Mercurial > public > madeira
view mp3/urls.py @ 180:312f198e8958
Changes for Django 1.8.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 13 Dec 2015 21:04:43 -0600 |
parents | e2868ad47a1e |
children |
line wrap: on
line source
""" Urls for the mp3 application. """ from django.conf.urls import url from django.views.generic import ListView from mp3.models import Collection urlpatterns = [ url(r'^$', ListView.as_view( model=Collection, paginate_by=10, context_object_name='collection_list'), name='mp3-index'), ]