Mercurial > public > sg101
view gpp/contests/urls.py @ 564:e5d3552d4ad0
The ajax login didn't work from the register page. I think this is because
there are two input boxes with the same ID in this situation. Renamed the
ajax login form's ID's to make them unique.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 13 Feb 2012 19:34:29 -0600 |
parents | 51fa1e0ca218 |
children | 0a8e6a9ccf53 |
line wrap: on
line source
""" Url patterns for the contests application. """ from django.conf.urls.defaults import patterns, url from django.views.generic import DetailView, ListView from contests.models import Contest urlpatterns = patterns('', url(r'^$', ListView.as_view( context_object_name='contests', queryset=Contest.public_objects.all()), name='contests-index'), url(r'^enter/$', 'contests.views.enter', name='contests-enter'), url(r'^c/(?P<slug>[\w-]+)/$', DetailView.as_view( context_object_name='contest', queryset=Contest.public_objects.all().select_related('winner')), name='contests-contest'), )