diff --git a/gallery/__init__.py b/gallery/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gallery/admin.py b/gallery/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/gallery/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/gallery/apps.py b/gallery/apps.py new file mode 100644 index 0000000..97a664a --- /dev/null +++ b/gallery/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class GalleryConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'gallery' diff --git a/gallery/models.py b/gallery/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/gallery/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/gallery/tests.py b/gallery/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/gallery/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/gallery/views.py b/gallery/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/gallery/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. diff --git a/urlaubsauktion/settings.py b/urlaubsauktion/settings.py index 731501c..128cc56 100644 --- a/urlaubsauktion/settings.py +++ b/urlaubsauktion/settings.py @@ -27,6 +27,7 @@ INSTALLED_APPS = [ 'django_countries', 'mathfilters', 'mail', + 'gallery', ] MIDDLEWARE = [