Mercurial > public > sg101
view gpp/weblinks/urls.py @ 99:10d6182b9f6e
Forums: added error handling to the flagging of posts. Did the same with the comments function too.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 14 Sep 2009 00:06:08 +0000 |
parents | c0d0779b266f |
children | 952e05cb3d80 |
line wrap: on
line source
"""urls for the weblinks application""" from django.conf.urls.defaults import * urlpatterns = patterns('weblinks.views', url(r'^$', 'link_index', name='weblinks-main'), (r'^add/$', 'add_link'), (r'^add/thanks/$', 'add_thanks'), url(r'^category/(?P<category>\d+)/(?P<sort>title|date|rating|hits)/page/(?P<page>\d+)/$', 'view_links', name='weblinks-view_links'), url(r'^detail/(\d+)/$', 'link_detail', name='weblinks-link_detail'), (r'^new/$', 'new_links'), (r'^popular/$', 'popular_links'), (r'^random/$', 'random_link'), (r'^report/(\d+)/$', 'report_link'), (r'^report/thanks/(\d+)$', 'report_thanks'), url(r'^search/page/(?P<page>\d+)/$', 'search_links', name="weblinks-search"), (r'^visit/(\d+)/$', 'visit'), )