1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-31 14:42:10 +00:00

Let user specify ccnet user id when registration

This commit is contained in:
plt
2011-10-29 11:50:58 +08:00
parent e999ebe663
commit 2f7ee386e2
14 changed files with 299 additions and 29 deletions

View File

@@ -18,11 +18,11 @@ urlpatterns = patterns('',
# Uncomment the next line to enable the admin:
(r'^admin/', include(admin.site.urls)),
(r'^accounts/', include('registration.backends.default.urls')),
(r'^accounts/', include('base.registration_urls')),
(r'^$', root),
(r'^home/$', home),
(r'^home/my/$', myhome),
url(r'^home/my/$', myhome, name='myhome'),
(r'^peers/$', peers),
(r'^groups/$', groups),
url(r'^group/(?P<group_id>[^/]+)/$', group, name='view_group'),