Mercurial > hg > agora
view apps/profile/urls.py @ 36:bc0137b6c264
Shuffle URLs around, make them more consistent
author | Jordi Gutiérrez Hermoso <jordigh@gmail.com> |
---|---|
date | Wed, 07 Jul 2010 09:23:03 -0500 |
parents | |
children | d48e8676b18f |
line wrap: on
line source
from django.conf.urls.defaults import * urlpatterns = patterns('agora.apps.profile.views', (r'^editprofile/(?P<user>\w*)/$', 'editprofile'), (r'^(?P<user>\w*)/$', 'showprofile'), )