Mercurial > hg > agora-dellsystem
view 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 | 71024a491161 |
children | 2e7226e90157 |
line wrap: on
line source
from django.conf.urls.defaults import * # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', (r'^$', 'django.views.generic.simple.direct_to_template', {'template': 'index.djhtml'}), (r'^admin/doc/', include('django.contrib.admindocs.urls')), (r'^admin/', include(admin.site.urls)), (r'^accounts/logout/', 'django.contrib.auth.views.logout', {'template_name' : 'index.djhtml', 'next_page' : '/'}), (r'^accounts/', include('registration.urls'), {'template_name' : 'registration/registration_form.djhtml'} ), (r'^', include('agora.apps.bundle.urls')), ) #Let Django itself serve static data during debugging from django.conf import settings if settings.DEBUG: urlpatterns += patterns('', (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': 'static/', 'show_indexes': True}), )