template_name='catalogue/recent_audiobooks_list.html'), name='recent_audiobooks_list'),
url(r'^nowe/daisy/$', ListView.as_view(
queryset=Book.objects.filter(media__type='daisy').annotate(m=Max('media__uploaded_at')).order_by('-m'),
template_name='catalogue/recent_audiobooks_list.html'), name='recent_audiobooks_list'),
url(r'^nowe/daisy/$', ListView.as_view(
queryset=Book.objects.filter(media__type='daisy').annotate(m=Max('media__uploaded_at')).order_by('-m'),