view apps/bundle/urls.py @ 23:d9658d30b814

Implement initial user registration and authentication. Still way buggy.
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Sun, 27 Jun 2010 21:56:57 -0500
parents 6c2d400091fd
children d5ebcf4a249f
line wrap: on
line source

from django.conf.urls.defaults import *

urlpatterns = patterns('agora.apps.bundle.views',
    (r'^(?P<user>.*)/(?P<bundle>.*)/$', 'detail'),
)