started loading stats from gamechanger
This commit is contained in:
@@ -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"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user