projects/urls.py @ 358d0b9cc0aa

Add an extra style for unbordered images.
author Steve Losh <steve@stevelosh.com>
date Sun, 30 Aug 2009 20:36:21 -0400
parents 9f1be6d74c1b
children (none)
from django.conf.urls.defaults import *

urlpatterns = patterns('projects.views',
    url(r'^$',         'list',    name='project-list'),
    url(r'^comment/$', 'comment', name='project-post-comment'),
    url(r'^(.*)/$',    'project', name='project-view'),
)