You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@senssoft.apache.org by ar...@apache.org on 2016/10/21 16:11:59 UTC

[06/48] incubator-senssoft-tap git commit: Fixed bug in user_profile url

Fixed bug in user_profile url

To keep with our convention, all urls must end with a /


Project: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/commit/4290cb01
Tree: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/tree/4290cb01
Diff: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/diff/4290cb01

Branch: refs/heads/master
Commit: 4290cb01e0ab78e246df7387ed91186fa78a6384
Parents: b27a8e7
Author: Arthi Vezhavendan <ar...@gmail.com>
Authored: Wed Jul 20 13:36:10 2016 -0400
Committer: Arthi Vezhavendan <ar...@gmail.com>
Committed: Wed Jul 20 13:36:10 2016 -0400

----------------------------------------------------------------------
 app_mgr/urls.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/blob/4290cb01/app_mgr/urls.py
----------------------------------------------------------------------
diff --git a/app_mgr/urls.py b/app_mgr/urls.py
index 827f2e3..28dd27e 100644
--- a/app_mgr/urls.py
+++ b/app_mgr/urls.py
@@ -22,7 +22,7 @@ urlpatterns = [
     url(r'^register/', views.register, name='register'),
     url(r'^login/$', views.login_user, name='login'),
     url(r'^logout/$', views.logout_user, name='logout'),
-    url(r'^user_profile$', views.view_profile, name='view_profile'),
+    url(r'^user_profile/$', views.view_profile, name='view_profile'),
     url(r'^reset/confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$', views.reset_confirm, name='reset_confirm'),
     url(r'^reset/$', views.reset, name='reset'),
     url(r'^reset/sent/$', views.reset_sent, name='reset_sent'),