view madeira/videos/urls.py @ 66:9b9daefba97a

For Django 1.4, django.conf.urls.defaults is deprecated. Use django.conf.urls instead.
author Brian Neal <bgneal@gmail.com>
date Sat, 14 Apr 2012 14:14:13 -0500
parents 5913ddcebea4
children
line wrap: on
line source
"""
Urls for the videos application.

"""
from django.conf.urls import patterns, url
from django.views.generic import DetailView, ListView

from videos.models import Collection


urlpatterns = patterns('',
   url(r'^$',
       ListView.as_view(
           model=Collection,
           context_object_name='collection_list'),
       name='videos-index'),
   url(r'^(?P<pk>\d+)/$',
       DetailView.as_view(model=Collection, context_object_name='collection'),
       name='videos-item')
)