thoughts/urls.py @ a8bf2eea85f7

Fixed the plural for blog entries too.
author Steve Losh <steve@stevelosh.com>
date Sat, 14 Feb 2009 11:46:36 -0500
parents 315df6ca542d
children (none)
from django.conf.urls.defaults import *

urlpatterns = patterns('stevelosh.thoughts.views',
    url(r'^$',            'list', name='thoughts-list-newest'),
    url(r'^page/(\d+)/$', 'list', name='thoughts-list-page'),
)