started loading stats from gamechanger

This commit is contained in:
2022-06-10 08:26:02 -05:00
parent 00ca37f017
commit cd4257f13e
5 changed files with 90 additions and 2 deletions

View File

@@ -1,10 +1,17 @@
from django.urls import path
from .views import AccountFormView, PreferencesFormView, lineup_submit, roster_import
from .views import (
AccountFormView,
PreferencesFormView,
lineup_submit,
roster_import,
stats,
)
urlpatterns = [
path("account/", AccountFormView.as_view(), name="gamechanger_account"),
path("preferences/", PreferencesFormView.as_view(), name="gamechanger_preferences"),
path("roster/import", roster_import, name="gamechanger_import_roster"),
path("lineup/submit", lineup_submit, name="gamechanger_lineup_submit"),
path("stats", stats, name="gamechanger_stats"),
]