automated push from the terminal

This commit is contained in:
Software Shinobi
2026-02-09 11:06:47 -05:00
parent 2f5926a171
commit fe556105b9
86 changed files with 17183 additions and 2 deletions

21
application/urls.py Normal file
View File

@@ -0,0 +1,21 @@
from django.contrib import admin
from django.urls import path, include
from django.views.generic.base import TemplateView
from . import views
urlpatterns = [
path("", TemplateView.as_view(template_name="listing.html"), name="listing"),
path("home", TemplateView.as_view(template_name="home.html"), name="home"),
path('tournament/', include('tournament.urls')),
path("player/", include("player.urls")),
path("player/", include("django.contrib.auth.urls")),
]