urls.py
changeset 5 9a671f3eb24c
parent 0 33750f11199f
child 6 8929b82c1dbb
equal deleted inserted replaced
4:e3b8a3ae3857 5:9a671f3eb24c
     1 from django.conf.urls.defaults import *
     1 from django.conf.urls.defaults import *
       
     2 
       
     3 from offline.feedback.views import submit_feedback
     2 
     4 
     3 # Uncomment the next two lines to enable the admin:
     5 # Uncomment the next two lines to enable the admin:
     4 # from django.contrib import admin
     6 # from django.contrib import admin
     5 # admin.autodiscover()
     7 # admin.autodiscover()
     6 
     8 
    12     # to INSTALLED_APPS to enable admin documentation:
    14     # to INSTALLED_APPS to enable admin documentation:
    13     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    15     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    14 
    16 
    15     # Uncomment the next line to enable the admin:
    17     # Uncomment the next line to enable the admin:
    16     # (r'^admin/', include(admin.site.urls)),
    18     # (r'^admin/', include(admin.site.urls)),
       
    19     (r'^feedback/submit', submit_feedback)
    17 )
    20 )