urls.py
author nishanth
Tue, 20 Apr 2010 01:31:45 +0530
changeset 7 dfedb369f32e
parent 6 8929b82c1dbb
child 10 7535305b1104
permissions -rw-r--r--
first fixed on the urls and then gave the admin_key in settings and then created main admin page.

from django.conf.urls.defaults import *

from offline.feedback import views as feed_views
from offline.event import views as event_views

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

urlpatterns = patterns('',
    # Example:
    # (r'^offline/', include('offline.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)),

    (r'^$', event_views.event_home),
    (r'^event/admin/(\w+)$', event_views.event_admin),
    (r'^event/create/(\w+)$', event_views.event_create),
    (r'^feedback/submit$', feed_views.submit_feedback),
    (r'^feedback/open/(\w+)$', feed_views.open_feedback),
    (r'^feedback/close/(\w+)$', feed_views.close_feedback),
)