Mercurial > public > sg101
view contests/urls.py @ 973:6f55c086db1e
Guess file extension based on content-type.
When downloading a file, and no path is supplied to store it, guess the file
extension using mimetypes and the content-type header.
Also supply a unit test for the HotLinkImageForm.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 01 Oct 2015 19:44:45 -0500 |
parents | 5977b43499f7 |
children | 5ba2508939f7 |
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.all().prefetch_related('winners')), 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().prefetch_related('winners')), name='contests-contest'), )