Added template and view that uses static assets

This commit is contained in:
2025-05-29 15:43:13 -04:00
parent 729c70d879
commit c80573e567
6 changed files with 38 additions and 2 deletions

View File

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