/
notes:
- [x] view:
TemplateView
in config/urls.py
- [x] template:
templates/pages/home.html
- [x] title: Home
- [x] name:
home
about/
notes:
- [x] view:
TemplateView
in config/urls.py
- [x] template:
templates/pages/about.html
- [x] title: About
- [x] name:
about
pricing/
notes:
- [x] view:
TemplateView
in config/urls.py
- [x] template:
templates/pages/pricing.html
- [x] title: Pricing
- [x] name:
pricing
tos/
notes:
- [x] view:
TemplateView
in config/urls.py
- [x] template:
templates/pages/tos.html
- [x] title: Terms of Service
- [x] name:
tos
privacy-policy/
notes:
- [x] view:
TemplateView
in config/urls.py
- [x] template:
templates/pages/privacy-policy.html
- [x] title: Privacy Policy
- [x] name:
privacy-policy
app/
notes:
- [x] view:
DashboardView
in {{project_slug}}/app/views.py
- [x] template:
templates/app/home.html
- [x] title: Account - Home
- [x] name:
app:home
app/users/~update/
notes:
- [x] view:
UserUpdateView
in {{project_slug}}/users/views.py
- [x] template:
templates/app/users/user_form.html
- [x] title: Profile
- [x] name:
app:users:update
app/users/
notes:
- [x] view:
UserDetailView
in {{project_slug}}/users/views.py
- [x] template:
templates/app/users/user_detail.html
- [x] title: Profile
- [x] name:
app:users:detail
auth/^^signup/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/signup.html
- [x] title: Sign Up
- [x] name:
account_signup
auth/^^login/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/login.html
- [x] title: Login
- [x] name:
account_login
auth/^^logout/$
notes: this url is provided by django-allauth. The template is not used since logout on GET is configured by default
- [x] view: x
- [x] template: None
- [x] title: None
- [x] name:
account_logout
auth/^^password/change/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/password_change.html
- [x] title: Change Password
- [x] name:
account_change_password
auth/^^password/set/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/password_set.html
- [x] title: Set Password
- [x] name:
account_set_password
auth/^^inactive/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/account_inactive.html
- [x] title: Account Inactive
- [x] name:
account_inactive
auth/^^email/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/email.html
- [x] title:
- [x] name:
account_email
auth/^^confirm-email/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/verification_sent.html
- [x] title: Veriy Email
- [x] name:
account_email_verification_sent
auth/^^confirm-email/(?P[-:\w]+)/$
notes: this url is provided by django-allauth. The template is not used since the user is automatically logged in on confirmation.
- [x] view: x
- [x] template: None
- [x] title: None
- [x] name:
account_confirm_email
auth/^^password/reset/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/password_reset.html
- [x] title: Password Reset
- [x] name:
account_reset_password
auth/^^password/reset/done/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/password_reset_done.html
- [x] title: Reset Password - done!
- [x] name:
account_reset_password_done
auth/^^password/reset/key/(?P[0-9A-Za-z]+)-(?P.+)/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/password_reset_from_key.html
- [x] title: Change Password
- [x] name:
account_reset_password_from_key
auth/^^password/reset/key/done/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/account/password_reset_from_key_done.html
- [x] title: Change Password
- [x] name:
account_reset_password_from_key_done
auth/^social/^login/cancelled/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/socialaccount/login_cancelled.html
- [x] title: Login Cancelled
- [x] name:
socialaccount_login_cancelled
auth/^social/^login/error/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/socialaccount/authentication_error.html
- [x] title: Network Login Failure
- [x] name:
socialaccount_login_error
auth/^social/^signup/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/socialaccount/signup.html
- [x] title: None
- [x] name:
socialaccount_signup
auth/^social/^connections/$
notes: this url is provided by django-allauth
- [x] view: x
- [x] template:
templates/auth/socialaccount/connections.html
- [x] title: Account Connections
- [x] name:
socialaccount_connections
400/
notes: available while DEBUG=True
- [x] view:
path
override in config/urls.py
while DEBUG=True
- [x] template: None using the standard Django template
- [x] title: None, using the standard title
403/
notes: available while DEBUG=True
- [x] view:
path
override in config/urls.py
while DEBUG=True
- [x] template:
templates/403.html
- [x] title: Forbidden (403)
404/
notes: available while DEBUG=True
- [x] view:
path
override in config/urls.py
while DEBUG=True
- [x] template:
templates/404.html
- [x] title: Page not found (404)
500/
notes: available while DEBUG=True
- [x] view:
path
override in config/urls.py
while DEBUG=True
- [x] template:
templates/500.html
- [x] title: Server Error (500)