web/hgbook/comments/urls.py
author amit@thunder
Mon, 25 Jan 2010 18:56:45 +0530
changeset 0 8083d21c0020
permissions -rwxr-xr-x
The first commit of all the required files for the review app

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    (r'chapter/(?P<id>[^/]+)/?$', 'hgbook.comments.views.chapter'),
    (r'chapter/(?P<id>[^/]+)/count/?$', 'hgbook.comments.views.single_com'),
    (r'single/(?P<id>[^/]+)/?$', 'hgbook.comments.views.single'),
    (r'submit/(?P<id>[^/]+)/?$', 'hgbook.comments.views.submit')
)