comparison urls.py @ 29:6ba969517b9c

Implement initial profiles, cleanup models, change Free_license to FreeLicense
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Wed, 30 Jun 2010 00:04:34 -0500
parents 2e7226e90157
children 290dd9208cc4
comparison
equal deleted inserted replaced
28:9f17312f3914 29:6ba969517b9c
16 (r'^accounts/logout/', 'django.contrib.auth.views.logout', 16 (r'^accounts/logout/', 'django.contrib.auth.views.logout',
17 {'template_name' : 'index.djhtml', 'next_page' : '/'}), 17 {'template_name' : 'index.djhtml', 'next_page' : '/'}),
18 18
19 (r'^accounts/', include('registration.urls')), 19 (r'^accounts/', include('registration.urls')),
20 20
21 (r'^(?P<user>[\w|_]*)/$', 'agora.apps.profile.views.showprofile'),
22
21 (r'^', include('agora.apps.bundle.urls')), 23 (r'^', include('agora.apps.bundle.urls')),
22 24
23 ) 25 )
24 26
25 #Let Django itself serve static data during debugging 27 #Let Django itself serve static data during debugging