view contests/urls.py @ 686:216f06267e2d

For Django 1.5: Remove all references to django.contrib.markup. This amounted to deleting some old templates, removing the app from INSTALLED_APPS, and doing some cleanup in core.markup.
author Brian Neal <bgneal@gmail.com>
date Sat, 24 Aug 2013 20:08:12 -0500
parents ee87ea74d46b
children 5977b43499f7
line wrap: on
line source
"""
Url patterns for the contests application.

"""
from django.conf.urls 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.select_related('winner')),
       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'),
)