comparison urls.py @ 24:2e7226e90157

Many fixes. See detailed description. - Style errors - Writer proper 404 and 500 templates - Make login page redirect back to page being viewed (still buggy?) - Provide a brief blurb about Agora - Use tables for registration and login forms (need to be styled) - Fix typos, grammatical errors. - Don't use .djhtml extension for some templates
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Mon, 28 Jun 2010 03:00:01 -0500
parents d9658d30b814
children 6ba969517b9c
comparison
equal deleted inserted replaced
23:d9658d30b814 24:2e7226e90157
14 (r'^admin/', include(admin.site.urls)), 14 (r'^admin/', include(admin.site.urls)),
15 15
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 {'template_name' : 'registration/registration_form.djhtml'} ),
21 20
22 (r'^', include('agora.apps.bundle.urls')), 21 (r'^', include('agora.apps.bundle.urls')),
23 22
24 ) 23 )
25 24