Initialized apps

This commit is contained in:
Taizo 'Tsa6' Simpson 2017-08-25 14:03:37 -04:00
parent 2becccb219
commit 8902a5aef4
21 changed files with 51 additions and 0 deletions

0
Discussions/__init__.py Normal file
View File

3
Discussions/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
Discussions/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class DiscussionsConfig(AppConfig):
name = 'Discussions'

View File

3
Discussions/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
Discussions/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
Discussions/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

0
LandingPage/__init__.py Normal file
View File

3
LandingPage/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
LandingPage/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class LandingpageConfig(AppConfig):
name = 'LandingPage'

View File

3
LandingPage/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
LandingPage/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
LandingPage/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.

0
Show/__init__.py Normal file
View File

3
Show/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
Show/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class ShowConfig(AppConfig):
name = 'Show'

View File

3
Show/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
Show/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
Show/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.