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.

18 lines
548 B

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'^check_token/([\w-]+)/([\w-]+)/$',
  9. views.check_token, name="hc-check-token"),
  10. url(r'^profile/$', views.profile, name="hc-profile"),
  11. url(r'^unsubscribe_reports/([\w-]+)/$',
  12. views.unsubscribe_reports, name="hc-unsubscribe-reports"),
  13. ]