urls.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 25 Sep 2009 23:54:25 +0530
changeset 8 f0b5ff862c6d
parent 6 4e819dd96e1f
child 12 243a7e90f3c3
permissions -rwxr-xr-x
Added django-registration and its settings.

from django.conf.urls.defaults import *
from django.conf import settings
from django.views.generic.simple import direct_to_template

import os.path

# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()

urlpatterns = patterns('',
    # Example:
    # (r'^scipy/', include('scipy.foo.urls')),

    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
    # to INSTALLED_APPS to enable admin documentation:
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    # (r'^admin/', include(admin.site.urls)),
    url (r'^$', direct_to_template, {"template": "homepage.html"}, name="home"),
    (r'^accounts/', include('registration.urls')),
    (r'^register/','conference.views.register'),
    (r'^logout/','conference.views.logout'),
    (r'^regthank/(?P<id>\d+)/$', 'conference.views.regthank'),
    (r'^site-content/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
)