2012-05-15 02:59:16 +00:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
|
2012-06-25 06:57:14 +00:00
|
|
|
from views import group_list, group_info, group_member_operations, \
|
2012-07-14 05:31:34 +00:00
|
|
|
group_members, msg_reply, msg_reply_new
|
2012-05-15 02:59:16 +00:00
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
2012-06-25 06:57:14 +00:00
|
|
|
url(r'^(?P<group_id>[\d]+)/$', group_info, name='group_info'),
|
|
|
|
url(r'^reply/(?P<msg_id>[\d]+)/$', msg_reply, name='msg_reply'),
|
2012-06-27 08:39:49 +00:00
|
|
|
url(r'^reply/new/$', msg_reply_new, name='msg_reply_new'),
|
2012-05-22 13:42:29 +00:00
|
|
|
url(r'^(?P<group_id>[\d]+)/members/$', group_members, name='group_members'),
|
|
|
|
(r'^(?P<group_id>[\d]+)/member/(?P<user_name>[^/]+)/$', group_member_operations),
|
2012-05-15 02:59:16 +00:00
|
|
|
)
|