Ticket #17685: BaseDateListView.get_dated_items-doc-fix.diff

File BaseDateListView.get_dated_items-doc-fix.diff, 820 bytes (added by ejb, 12 years ago)
  • docs/ref/class-based-views.txt

     
    794794
    795795    .. method:: get_dated_items():
    796796
    797         Returns a 3-tuple containing (``date_list``, ``latest``,
     797        Returns a 3-tuple containing (``date_list``, ``object_list``,
    798798        ``extra_context``).
    799799
    800800        ``date_list`` is the list of dates for which data is available.
    801         ``object_list`` is the list of objects ``extra_context`` is a
     801        ``object_list`` is the list of objects. ``extra_context`` is a
    802802        dictionary of context data that will be added to any context data
    803803        provided by the
    804804        :class:`~django.views.generic.list.MultipleObjectMixin`.
Back to Top