17 lines
517 B
Python
17 lines
517 B
Python
from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
|
|
from django.urls import path
|
|
|
|
from .views import (
|
|
PreferencesFormView,
|
|
AccountFormView,
|
|
roster_view,
|
|
roster_save
|
|
)
|
|
|
|
urlpatterns = [
|
|
path("account/", AccountFormView.as_view(), name="gamechanger_account"),
|
|
path("preferences/", PreferencesFormView.as_view(), name="gamechanger_preferences"),
|
|
path("roster/", roster_view, name="gamechanger_roster"),
|
|
path("roster/save", roster_save, name="gamechanger_save"),
|
|
]
|