annotate polls/urls.py @ 591:1982996ce365
Created a "fixed page" facility.
Reworked the last few commits. We now generate HTML snippets from
restructured text files. These are {% include'd %} by a fixed
page template. This is for bitbucket issue #8.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sat, 12 May 2012 14:57:45 -0500 |
parents |
ee87ea74d46b |
children |
5ba2508939f7 |
rev |
line source |
gremmie@1
|
1 """urls for the polls application"""
|
bgneal@574
|
2 from django.conf.urls import patterns, url
|
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 )
|