new gallery implementation

This commit is contained in:
2021-06-27 22:11:02 +00:00
committed by Patrick Mayr
parent 0f8caa6a0b
commit c0cba47f11
55 changed files with 19333 additions and 2 deletions

9
fet2020/gallery/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="gallery"),
path("<slug:slug>/", views.show_album, name="album"),
]