18 lines
537 B
Python
18 lines
537 B
Python
from django.urls import path
|
|
|
|
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"),
|
|
]
|