Add templates & static files

This commit is contained in:
Nyymix 2024-12-28 14:14:21 +02:00
parent 1bcf7ceba3
commit 043449cf4f
8 changed files with 55 additions and 8 deletions

View file

@ -5,5 +5,6 @@ from . import views
app_name = 'gallery'
urlpatterns = [
path("", views.index, name="index"),
]
path('', views.Main.as_view(), name='main_url'),
]