annotate contests/urls.py @ 821:71db8076dc3d

Bandmap WIP: geocoding integrated with add form. Add form works. Before submitting the form, client side JS makes a geocode request to Google and populates hidden lat/lon fields with the result. Successfully created a model instance on the server side. Still need to update admin dashboard, admin approval, and give out badges for adding bands to the map. Once that is done, then work on displaying the map with filtering.
author Brian Neal <bgneal@gmail.com>
date Tue, 23 Sep 2014 20:40:31 -0500
parents 5977b43499f7
children 5ba2508939f7
rev   line source
bgneal@540 1 """
bgneal@540 2 Url patterns for the contests application.
bgneal@540 3
bgneal@540 4 """
bgneal@574 5 from django.conf.urls import patterns, url
bgneal@540 6 from django.views.generic import DetailView, ListView
bgneal@540 7
bgneal@540 8 from contests.models import Contest
bgneal@540 9
bgneal@540 10
bgneal@540 11 urlpatterns = patterns('',
bgneal@540 12 url(r'^$',
bgneal@540 13 ListView.as_view(
bgneal@540 14 context_object_name='contests',
bgneal@796 15 queryset=Contest.public_objects.all().prefetch_related('winners')),
bgneal@540 16 name='contests-index'),
bgneal@540 17
bgneal@540 18 url(r'^enter/$',
bgneal@540 19 'contests.views.enter',
bgneal@540 20 name='contests-enter'),
bgneal@540 21
bgneal@540 22 url(r'^c/(?P<slug>[\w-]+)/$',
bgneal@540 23 DetailView.as_view(
bgneal@540 24 context_object_name='contest',
bgneal@796 25 queryset=Contest.public_objects.all().prefetch_related('winners')),
bgneal@540 26 name='contests-contest'),
bgneal@540 27 )