Mercurial > public > sg101
comparison shoutbox/urls.py @ 581:ee87ea74d46b
For Django 1.4, rearranged project structure for new manage.py.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 May 2012 17:10:48 -0500 |
parents | gpp/shoutbox/urls.py@ddd69a8e07c7 |
children | 5ba2508939f7 |
comparison
equal
deleted
inserted
replaced
580:c525f3e0b5d0 | 581:ee87ea74d46b |
---|---|
1 """ | |
2 Urls for the Shoutbox application. | |
3 """ | |
4 | |
5 from django.conf.urls import patterns, url | |
6 | |
7 urlpatterns = patterns('shoutbox.views', | |
8 url(r'^delete/$', 'delete', name='shoutbox-delete'), | |
9 url(r'^edit/$', 'edit', name='shoutbox-edit'), | |
10 url(r'^flag/$', 'flag', name='shoutbox-flag'), | |
11 url(r'^shout/$', 'shout', name='shoutbox-shout'), | |
12 url(r'^text/$', 'text', name='shoutbox-text'), | |
13 url(r'^view/(\d+)/$', 'view_shout', name='shoutbox-view'), | |
14 url(r'^view/history/$', 'view_history', name='shoutbox-history'), | |
15 ) |