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

Add groups view

This commit is contained in:
plt
2011-03-20 21:47:28 +08:00
parent 84764c3281
commit 49ed0f8bd5
5 changed files with 62 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
from django.conf.urls.defaults import *
from django.conf import settings
from seahub.views import root, home, peers
from seahub.views import root, home, peers, groups
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
@@ -20,6 +20,7 @@ urlpatterns = patterns('',
(r'^$', root),
(r'^home/$', home),
(r'^peers/$', peers),
(r'^groups/$', groups),
)
if settings.DEBUG: