aboutsummaryrefslogtreecommitdiffstats
path: root/lib/users/urls.py
blob: 4c33cb18846a2552e8edcb050642e7082f05cb55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from django.conf.urls import include, url
from . import views

urlpatterns = [
    url(r'^signup/', views.SignUp.as_view(), name='signup'),
    url(r'^password_change/', views.change_password, name='password_change'),

    url(r'^password_change/', views.change_password, name='password_change'),
    url(r'^edit_user/(?P<user_pk>\d+)$', views.edit_user, name="edit_user"),

    url(r'^xhr_user_commit/$', views.xhr_user_commit, name='xhr_user_commit'),

]