jayfk / launchr

Launchr is an open source SaaS starter kit, based on Django.

Home Page:https://getlaunchr.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement, document and test every url/template

jayfk opened this issue · comments

/
notes:

  • view: TemplateView in config/urls.py
  • template: templates/pages/home.html
  • title: Home
  • name: home

about/
notes:

  • view: TemplateView in config/urls.py
  • template: templates/pages/about.html
  • title: About
  • name: about

pricing/
notes:

  • view: TemplateView in config/urls.py
  • template: templates/pages/pricing.html
  • title: Pricing
  • name: pricing

tos/
notes:

  • view: TemplateView in config/urls.py
  • template: templates/pages/tos.html
  • title: Terms of Service
  • name: tos

privacy-policy/
notes:

  • view: TemplateView in config/urls.py
  • template: templates/pages/privacy-policy.html
  • title: Privacy Policy
  • name: privacy-policy

app/
notes:

  • view: DashboardView in {{project_slug}}/app/views.py
  • template: templates/app/home.html
  • title: Account - Home
  • name: app:home

app/users/~update/
notes:

  • view: UserUpdateView in {{project_slug}}/users/views.py
  • template: templates/app/users/user_form.html
  • title: Profile
  • name: app:users:update

app/users/
notes:

  • view: UserDetailView in {{project_slug}}/users/views.py
  • template: templates/app/users/user_detail.html
  • title: Profile
  • name: app:users:detail

auth/^^signup/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/signup.html
  • title: Sign Up
  • name: account_signup

auth/^^login/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/login.html
  • title: Login
  • 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

  • view: x
  • template: None
  • title: None
  • name: account_logout

auth/^^password/change/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/password_change.html
  • title: Change Password
  • name: account_change_password

auth/^^password/set/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/password_set.html
  • title: Set Password
  • name: account_set_password

auth/^^inactive/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/account_inactive.html
  • title: Account Inactive
  • name: account_inactive

auth/^^email/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/email.html
  • title:
  • name: account_email

auth/^^confirm-email/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/verification_sent.html
  • title: Veriy Email
  • 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.

  • view: x
  • template: None
  • title: None
  • name: account_confirm_email

auth/^^password/reset/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/password_reset.html
  • title: Password Reset
  • name: account_reset_password

auth/^^password/reset/done/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/password_reset_done.html
  • title: Reset Password - done!
  • name: account_reset_password_done

auth/^^password/reset/key/(?P[0-9A-Za-z]+)-(?P.+)/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/password_reset_from_key.html
  • title: Change Password
  • name: account_reset_password_from_key

auth/^^password/reset/key/done/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/account/password_reset_from_key_done.html
  • title: Change Password
  • name: account_reset_password_from_key_done

auth/^social/^login/cancelled/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/socialaccount/login_cancelled.html
  • title: Login Cancelled
  • name: socialaccount_login_cancelled

auth/^social/^login/error/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/socialaccount/authentication_error.html
  • title: Network Login Failure
  • name: socialaccount_login_error

auth/^social/^signup/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/socialaccount/signup.html
  • title: None
  • name: socialaccount_signup

auth/^social/^connections/$
notes: this url is provided by django-allauth

  • view: x
  • template: templates/auth/socialaccount/connections.html
  • title: Account Connections
  • name: socialaccount_connections

400/
notes: available while DEBUG=True

  • view: path override in config/urls.py while DEBUG=True
  • template: None using the standard Django template
  • title: None, using the standard title

403/
notes: available while DEBUG=True

  • view: path override in config/urls.py while DEBUG=True
  • template: templates/403.html
  • title: Forbidden (403)

404/
notes: available while DEBUG=True

  • view: path override in config/urls.py while DEBUG=True
  • template: templates/404.html
  • title: Page not found (404)

500/
notes: available while DEBUG=True

  • view: path override in config/urls.py while DEBUG=True
  • template: templates/500.html
  • title: Server Error (500)