urls.py
author nishanth
Tue, 20 Apr 2010 21:06:54 +0530
changeset 16 ad51f38d0339
parent 12 81cd0140a0f2
child 17 68c2932660b7
permissions -rw-r--r--
implemented the start quiz functionality
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
33750f11199f initial commit.
nishanth
parents:
diff changeset
     1
from django.conf.urls.defaults import *
33750f11199f initial commit.
nishanth
parents:
diff changeset
     2
6
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 5
diff changeset
     3
from offline.feedback import views as feed_views
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 5
diff changeset
     4
from offline.event import views as event_views
12
81cd0140a0f2 created the register user functionality.
nishanth
parents: 11
diff changeset
     5
from offline.quiz import views as quiz_views
5
9a671f3eb24c created the add feedback functionality
nishanth
parents: 0
diff changeset
     6
0
33750f11199f initial commit.
nishanth
parents:
diff changeset
     7
# Uncomment the next two lines to enable the admin:
33750f11199f initial commit.
nishanth
parents:
diff changeset
     8
# from django.contrib import admin
33750f11199f initial commit.
nishanth
parents:
diff changeset
     9
# admin.autodiscover()
33750f11199f initial commit.
nishanth
parents:
diff changeset
    10
33750f11199f initial commit.
nishanth
parents:
diff changeset
    11
urlpatterns = patterns('',
33750f11199f initial commit.
nishanth
parents:
diff changeset
    12
    # Example:
33750f11199f initial commit.
nishanth
parents:
diff changeset
    13
    # (r'^offline/', include('offline.foo.urls')),
33750f11199f initial commit.
nishanth
parents:
diff changeset
    14
33750f11199f initial commit.
nishanth
parents:
diff changeset
    15
    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
33750f11199f initial commit.
nishanth
parents:
diff changeset
    16
    # to INSTALLED_APPS to enable admin documentation:
33750f11199f initial commit.
nishanth
parents:
diff changeset
    17
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
33750f11199f initial commit.
nishanth
parents:
diff changeset
    18
33750f11199f initial commit.
nishanth
parents:
diff changeset
    19
    # Uncomment the next line to enable the admin:
33750f11199f initial commit.
nishanth
parents:
diff changeset
    20
    # (r'^admin/', include(admin.site.urls)),
7
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    21
6
8929b82c1dbb added home page with minimum functionality
nishanth
parents: 5
diff changeset
    22
    (r'^$', event_views.event_home),
7
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    23
    (r'^event/admin/(\w+)$', event_views.event_admin),
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    24
    (r'^event/create/(\w+)$', event_views.event_create),
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    25
    (r'^feedback/submit$', feed_views.submit_feedback),
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    26
    (r'^feedback/open/(\w+)$', feed_views.open_feedback),
dfedb369f32e first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents: 6
diff changeset
    27
    (r'^feedback/close/(\w+)$', feed_views.close_feedback),
10
7535305b1104 created list feedbacks page
nishanth
parents: 7
diff changeset
    28
    (r'^feedback/list/(\w+)$', feed_views.list_feedbacks),
11
afc41af983e5 added show_report functionality
nishanth
parents: 10
diff changeset
    29
    (r'^feedback/report/(\w+)$', feed_views.view_report),
12
81cd0140a0f2 created the register user functionality.
nishanth
parents: 11
diff changeset
    30
    (r'^quiz$', quiz_views.start_page),
81cd0140a0f2 created the register user functionality.
nishanth
parents: 11
diff changeset
    31
    (r'^quiz/start/(\w+)$', quiz_views.start_quiz),
16
ad51f38d0339 implemented the start quiz functionality
nishanth
parents: 12
diff changeset
    32
    (r'^quiz/answer/(\w+)/(\w+)$', quiz_views.answer),
0
33750f11199f initial commit.
nishanth
parents:
diff changeset
    33
)