772093c57cb4fcc482b7a3f8f1ca266beacd3ade
[xnet] / xnet / accounts / urls.py
1 from django.conf.urls.defaults import patterns, url
2
3
4 urlpatterns = patterns(
5 'xnet.accounts.views',
6 url(r'^$', 'index', name='group-list'),
7 url(r'^home/([0-9]+)$', 'home', name='group-home'),
8 )