Initialized apps
This commit is contained in:
parent
2becccb219
commit
8902a5aef4
0
Discussions/__init__.py
Normal file
0
Discussions/__init__.py
Normal file
3
Discussions/admin.py
Normal file
3
Discussions/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
Discussions/apps.py
Normal file
5
Discussions/apps.py
Normal file
@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class DiscussionsConfig(AppConfig):
|
||||
name = 'Discussions'
|
0
Discussions/migrations/__init__.py
Normal file
0
Discussions/migrations/__init__.py
Normal file
3
Discussions/models.py
Normal file
3
Discussions/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
Discussions/tests.py
Normal file
3
Discussions/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
Discussions/views.py
Normal file
3
Discussions/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
0
LandingPage/__init__.py
Normal file
0
LandingPage/__init__.py
Normal file
3
LandingPage/admin.py
Normal file
3
LandingPage/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
LandingPage/apps.py
Normal file
5
LandingPage/apps.py
Normal file
@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class LandingpageConfig(AppConfig):
|
||||
name = 'LandingPage'
|
0
LandingPage/migrations/__init__.py
Normal file
0
LandingPage/migrations/__init__.py
Normal file
3
LandingPage/models.py
Normal file
3
LandingPage/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
LandingPage/tests.py
Normal file
3
LandingPage/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
LandingPage/views.py
Normal file
3
LandingPage/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
0
Show/__init__.py
Normal file
0
Show/__init__.py
Normal file
3
Show/admin.py
Normal file
3
Show/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
Show/apps.py
Normal file
5
Show/apps.py
Normal file
@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ShowConfig(AppConfig):
|
||||
name = 'Show'
|
0
Show/migrations/__init__.py
Normal file
0
Show/migrations/__init__.py
Normal file
3
Show/models.py
Normal file
3
Show/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
Show/tests.py
Normal file
3
Show/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
Show/views.py
Normal file
3
Show/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Reference in New Issue
Block a user