Date-Based Generic Views
Date-based generic views, provided in django.views.generic.dates
, are views for displaying drilldown pages for date-based data.
ArchiveIndexView
A top-level index page showing the latest objects, by date. Objects with a date in the future are not included unless you set allow_future
to True
.
Context
In addition to the context provided by django.views.generic.list.MultipleObjectMixin
(via django.views.generic.dates.BaseDateListView
), the template's context will be:
date_list
: ADateQuerySet
object containing all years that have objects available according toqueryset
, represented asdatetime.datetime
objects, in descending order
Notes
- Uses a default
context_object_name
oflatest
. - Uses a default
template_name_suffix
of_archive ...
Get Mastering Django: Core now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.