mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
First step of the groups subapp, view groups and request access done
This commit is contained in:
9
groups/urls.py
Normal file
9
groups/urls.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.conf.urls.defaults import *
|
||||
|
||||
from groups import views
|
||||
|
||||
urlpatterns = patterns('',
|
||||
('^$', views.index),
|
||||
(r'^list/$', views.group_list),
|
||||
(r'^request/(?P<groupid>\d+)/$', views.create_request),
|
||||
)
|
||||
Reference in New Issue
Block a user