annotate gpp/polls/urls.py @ 458:9a4bffdf37c3

Finishing up #220. Updated to GData v2.0 and using the new OAuth access token.
author Brian Neal <bgneal@gmail.com>
date Sat, 02 Jul 2011 03:52:43 +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 )