projects/urls.py @ 8d75ea2ae6de

Goodbye thoughts, youll live on in version control!
author Steve Losh <steve@stevelosh.com>
date Sun, 15 Feb 2009 00:54:05 -0500
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'),
)