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

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"),
]