Add gallery app

This commit is contained in:
Nyymix 2024-12-28 12:21:29 +02:00
parent 8da43addb9
commit 1bcf7ceba3
10 changed files with 36 additions and 1 deletions

View file

@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions', 'django.contrib.sessions',
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'gallery'
] ]
MIDDLEWARE = [ MIDDLEWARE = [

View file

@ -15,8 +15,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
""" """
from django.contrib import admin from django.contrib import admin
from django.urls import path from django.urls import include, path
urlpatterns = [ urlpatterns = [
path("gallery/", include("gallery.urls")),
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
] ]

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'

View file

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.

9
gallery/urls.py Normal file
View file

@ -0,0 +1,9 @@
from django.urls import path
from . import views
app_name = 'gallery'
urlpatterns = [
path("", views.index, name="index"),
]

9
gallery/views.py Normal file
View file

@ -0,0 +1,9 @@
from django.http import HttpResponse
from django.shortcuts import render
# Create your views here.
def index(request):
return HttpResponse("Hello, world.")