view gpp/weblinks/urls.py @ 120:f8f4514b806a

Added a 24-hour time preference flag in the user profile. Added forum template tags for showing forum dates/times adjusted for the user's time zone.
author Brian Neal <bgneal@gmail.com>
date Sun, 25 Oct 2009 21:55:28 +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'),
)