view gpp/weblinks/urls.py @ 145:71cb4208dc98

Tweak to #30, admin dashboard. Because of a bug in Django (9568), my dashboard appears on the login page. To get around this, pass in the user to the templatetag, so it can do a 'if user.is_staff' check. Also tweaked the HTML and CSS to show non-zero pending items in red. Shortened the pending item titles for readability.
author Brian Neal <bgneal@gmail.com>
date Wed, 09 Dec 2009 00:03:10 +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'),
)