annotate gpp/polls/urls.py @ 470:d9b6c4ec1977
For #227; rework last commit slightly (r508). Adapt the desired forums signal signature to the queued_search API instead of the other way around.
author |
Brian Neal <bgneal@gmail.com> |
date |
Wed, 17 Aug 2011 01:29:27 +0000 |
parents |
8f46ba2f1b81 |
children |
ddd69a8e07c7 |
rev |
line source |
gremmie@1
|
1 """urls for the polls application"""
|
gremmie@1
|
2 from django.conf.urls.defaults import *
|
gremmie@1
|
3
|
gremmie@1
|
4 urlpatterns = patterns('polls.views',
|
bgneal@166
|
5 url(r'^$', 'poll_index', name='polls-main'),
|
bgneal@166
|
6 url(r'^(?P<poll_id>\d+)/$', 'poll_detail', name='polls-detail'),
|
bgneal@166
|
7 url(r'^(?P<poll_id>\d+)/vote/$', 'poll_vote', name='polls-vote'),
|
bgneal@439
|
8 url(r'^delete_vote/$', 'poll_delete_vote', name='polls-delete_vote'),
|
gremmie@1
|
9 )
|