parts/django/tests/regressiontests/comment_tests/urls.py
changeset 307 c6bca38c1cbf
equal deleted inserted replaced
306:5ff1fc726848 307:c6bca38c1cbf
       
     1 from django.conf.urls.defaults import *
       
     2 
       
     3 urlpatterns = patterns('regressiontests.comment_tests.custom_comments.views',
       
     4     url(r'^post/$',          'custom_submit_comment'),
       
     5     url(r'^flag/(\d+)/$',    'custom_flag_comment'),
       
     6     url(r'^delete/(\d+)/$',  'custom_delete_comment'),
       
     7     url(r'^approve/(\d+)/$', 'custom_approve_comment'),
       
     8 )
       
     9