Commit 9220ddac65651c0546170f56944aa2bce1d4ef08
1 parent
f224994a
Exists in
master
and in
5 other branches
Fixing search url bug
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
users/urls.py
... | ... | @@ -9,11 +9,11 @@ urlpatterns = [ |
9 | 9 | url(r'^view/(?P<username>[\w_-]+)/$', views.View.as_view(), name='view'), |
10 | 10 | url(r'^delete/(?P<username>[\w_-]+)/$', views.delete, name='delete'), |
11 | 11 | url(r'^profile/$', views.Profile.as_view(), name='profile'), |
12 | + url(r'^search/$', views.SearchView.as_view(), name='search'), | |
12 | 13 | # |
13 | 14 | url(r'^profile/update/$', views.UpdateProfile.as_view(), name='update_profile'), |
14 | 15 | url(r'^profile/change_password/$', views.Change_password.as_view(), name='change_password'), |
15 | 16 | url(r'^profile/remove_account/$', views.Remove_account.as_view(), name='remove_account'), |
16 | 17 | url(r'^profile/delete/$', views.DeleteUser.as_view(), name='delete_profile'), |
17 | - url(r'^search/$', views.SearchView.as_view(), name='search'), | |
18 | 18 | |
19 | 19 | ] | ... | ... |