Check in blank gallery app

This commit is contained in:
Kumi 2021-05-30 08:03:05 +02:00
parent 7066feb5c3
commit 258048654d
7 changed files with 19 additions and 0 deletions

0
gallery/__init__.py Normal file
View file

3
gallery/admin.py Normal file
View file

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

6
gallery/apps.py Normal file
View 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
View file

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

3
gallery/tests.py Normal file
View file

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

3
gallery/views.py Normal file
View file

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

View file

@ -27,6 +27,7 @@ INSTALLED_APPS = [
'django_countries',
'mathfilters',
'mail',
'gallery',
]
MIDDLEWARE = [