view 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
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')),

     (r'^(?P<user>[\w|_]*)/$', 'agora.apps.profile.views.showprofile'),

     (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}),
                    )