init app
This commit is contained in:
parent
f17f941563
commit
2c5b65f070
0
LITReview/authentication/__init__.py
Normal file
0
LITReview/authentication/__init__.py
Normal file
3
LITReview/authentication/admin.py
Normal file
3
LITReview/authentication/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
LITReview/authentication/apps.py
Normal file
6
LITReview/authentication/apps.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class AuthenticationConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'authentication'
|
0
LITReview/authentication/migrations/__init__.py
Normal file
0
LITReview/authentication/migrations/__init__.py
Normal file
3
LITReview/authentication/models.py
Normal file
3
LITReview/authentication/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
LITReview/authentication/tests.py
Normal file
3
LITReview/authentication/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
LITReview/authentication/views.py
Normal file
3
LITReview/authentication/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
0
LITReview/reviews/__init__.py
Normal file
0
LITReview/reviews/__init__.py
Normal file
3
LITReview/reviews/admin.py
Normal file
3
LITReview/reviews/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
LITReview/reviews/apps.py
Normal file
6
LITReview/reviews/apps.py
Normal file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ReviewsConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'reviews'
|
0
LITReview/reviews/migrations/__init__.py
Normal file
0
LITReview/reviews/migrations/__init__.py
Normal file
3
LITReview/reviews/models.py
Normal file
3
LITReview/reviews/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
LITReview/reviews/tests.py
Normal file
3
LITReview/reviews/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
LITReview/reviews/views.py
Normal file
3
LITReview/reviews/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
x
Reference in New Issue
Block a user