1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 07:41:26 +00:00

show user-profile in popup

This commit is contained in:
llj
2012-06-23 16:12:33 +08:00
parent 7a0a5509b7
commit 7b57fbbaaa
5 changed files with 161 additions and 16 deletions

View File

@@ -4,5 +4,6 @@ urlpatterns = patterns('profile.views',
url(r'^list_user/$', 'list_userids', name="list_userids"),
url(r'^$', 'edit_profile', name="edit_profile"),
url(r'^(?P<user>[^/]+)/$', 'user_profile', name="user_profile"),
url(r'^(?P<user>[^/]+)/get/$', 'get_user_profile', name="get_user_profile"),
url(r'^logout/$', 'logout_relay', name="logout_relay"),
)