thoughts/urls.py @ c413184a564e

De-borking the Everything feed, part 1.
author Steve Losh <steve@stevelosh.com>
date Sun, 15 Feb 2009 00:47:38 -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'),
)