Mercurial > public > sg101
view contests/urls.py @ 964:51a2051588f5
Image uploading now expects a file.
Refactor image uploading to not expect a Django UploadedFile and use a regular
file instead. This will be needed for the future feature of being able to save
and upload images from the Internet.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 02 Sep 2015 20:50:08 -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'), )