You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.0 KiB

10 years ago
10 years ago
  1. from django.conf.urls import url
  2. from hc.accounts import views
  3. urlpatterns = [
  4. url(r'^login/$', views.login, name="hc-login"),
  5. url(r'^logout/$', views.logout, name="hc-logout"),
  6. url(r'^login_link_sent/$',
  7. views.login_link_sent, name="hc-login-link-sent"),
  8. url(r'^set_password_link_sent/$',
  9. views.set_password_link_sent, name="hc-set-password-link-sent"),
  10. url(r'^check_token/([\w-]+)/([\w-]+)/$',
  11. views.check_token, name="hc-check-token"),
  12. url(r'^profile/$', views.profile, name="hc-profile"),
  13. url(r'^profile/notifications/$', views.notifications, name="hc-notifications"),
  14. url(r'^profile/badges/$', views.badges, name="hc-badges"),
  15. url(r'^close/$', views.close, name="hc-close"),
  16. url(r'^unsubscribe_reports/([\w-]+)/$',
  17. views.unsubscribe_reports, name="hc-unsubscribe-reports"),
  18. url(r'^set_password/([\w-]+)/$',
  19. views.set_password, name="hc-set-password"),
  20. url(r'^switch_team/([\w-]+)/$',
  21. views.switch_team, name="hc-switch-team"),
  22. ]