thoughts/urls.py @ 315df6ca542d

Pulled out the URLs into app-specific files.

It's so much cleaner!
author Steve Losh <steve@stevelosh.com>
date Fri, 13 Feb 2009 20:40:27 -0500
parents (none)
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'),
)