adding gamechanger, in progress
This commit is contained in:
16
gamechanger/urls.py
Normal file
16
gamechanger/urls.py
Normal file
@@ -0,0 +1,16 @@
|
||||
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"),
|
||||
]
|
||||
Reference in New Issue
Block a user