Ticket #17685: BaseDateListView.get_dated_items-doc-fix.diff
File BaseDateListView.get_dated_items-doc-fix.diff, 820 bytes (added by , 13 years ago) |
---|
-
docs/ref/class-based-views.txt
794 794 795 795 .. method:: get_dated_items(): 796 796 797 Returns a 3-tuple containing (``date_list``, `` latest``,797 Returns a 3-tuple containing (``date_list``, ``object_list``, 798 798 ``extra_context``). 799 799 800 800 ``date_list`` is the list of dates for which data is available. 801 ``object_list`` is the list of objects ``extra_context`` is a801 ``object_list`` is the list of objects. ``extra_context`` is a 802 802 dictionary of context data that will be added to any context data 803 803 provided by the 804 804 :class:`~django.views.generic.list.MultipleObjectMixin`.