Check in blank gallery app
This commit is contained in:
parent
7066feb5c3
commit
258048654d
7 changed files with 19 additions and 0 deletions
0
gallery/__init__.py
Normal file
0
gallery/__init__.py
Normal file
3
gallery/admin.py
Normal file
3
gallery/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
6
gallery/apps.py
Normal file
6
gallery/apps.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class GalleryConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
|
name = 'gallery'
|
3
gallery/models.py
Normal file
3
gallery/models.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
3
gallery/tests.py
Normal file
3
gallery/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
3
gallery/views.py
Normal file
3
gallery/views.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
|
@ -27,6 +27,7 @@ INSTALLED_APPS = [
|
||||||
'django_countries',
|
'django_countries',
|
||||||
'mathfilters',
|
'mathfilters',
|
||||||
'mail',
|
'mail',
|
||||||
|
'gallery',
|
||||||
]
|
]
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
|
|
Loading…
Reference in a new issue