Basic functionality ready.

This commit is contained in:
2023-07-30 18:55:12 -04:00
parent 0cc9e55db0
commit 721e4f8107
16 changed files with 301 additions and 18 deletions

18
viewer/urls.py Normal file
View File

@@ -0,0 +1,18 @@
# Django imports
from django.urls import path
from django.contrib.auth.decorators import login_required
# Module imports
from .views import (
gallery_view
)
###########################################################################################
# URL Patterns. #
###########################################################################################
urlpatterns = [
# Views.
path('', gallery_view, name = 'gallery_view_root'),
path('<path:path>/', gallery_view, name = 'gallery_view_path'),
]