annotate videos/urls.py @ 190:55c4d2c0ee27

Center of the Surf Cover. Update copyright date.
author Brian Neal <bgneal@gmail.com>
date Wed, 04 Apr 2018 19:30:41 -0500
parents 312f198e8958
children
rev   line source
bgneal@50 1 """
bgneal@50 2 Urls for the videos application.
bgneal@50 3
bgneal@50 4 """
bgneal@180 5 from django.conf.urls import url
bgneal@50 6 from django.views.generic import DetailView, ListView
bgneal@50 7
bgneal@50 8 from videos.models import Collection
bgneal@50 9
bgneal@50 10
bgneal@180 11 urlpatterns = [
bgneal@50 12 url(r'^$',
bgneal@50 13 ListView.as_view(
bgneal@50 14 model=Collection,
bgneal@50 15 context_object_name='collection_list'),
bgneal@50 16 name='videos-index'),
bgneal@50 17 url(r'^(?P<pk>\d+)/$',
bgneal@50 18 DetailView.as_view(model=Collection, context_object_name='collection'),
bgneal@50 19 name='videos-item')
bgneal@180 20 ]