Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
'queryset': Entry.objects.filter(is_draft=False), 'date_field': 'published_on', }
'queryset': Tag.objects.all(), }
url(r'^/?$', ArchiveIndexView.as_view(**entry_dict), name="news-main"), url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>[0-9A-Za-z-]+)/$', DateDetailView.as_view(slug_field='slug', month_format='%m', **entry_dict), name="news-detail"), url(r'^about/$', TemplateView.as_view(template_name='news/about.html'), name='news-about'), ) |