refactor for less duplication

refactored to use a common 'list.html'
refactored to allow some modularization (using blocks)
This commit is contained in:
2021-11-07 15:11:09 -06:00
parent 34000314e7
commit b7012b77df
8 changed files with 23 additions and 111 deletions

View File

@@ -21,7 +21,7 @@ from django.conf import settings
from .views import welcome
urlpatterns = [
path('', welcome),
path('', welcome, name="home"),
path('admin/', admin.site.urls),
path('events/', include('events.urls')),
path('teams/', include('teams.urls')),