projects/urls.py @ a3380ed37242

Cleanup Tuesdays - Removed the photoblog, removed the silly ProjectPhoto thing too.
author Steve Losh <steve@stevelosh.com>
date Tue, 24 Mar 2009 17:57:23 -0400
parents 315df6ca542d
children 9f1be6d74c1b
from django.conf.urls.defaults import *

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