diff --git a/docs/ref/class-based-views.txt b/docs/ref/class-based-views.txt
index ada25a6..758763f 100644
a
|
b
|
ModelFormMixin
|
466 | 466 | |
467 | 467 | Since this is a subclass of |
468 | 468 | :class:`~django.views.generic.detail.SingleObjectMixin`, instances of this |
469 | | mixin have access to the :attr:`~SingleObjectMixin.model`` and |
470 | | :attr:`~SingleObjectMixin.queryset`` attributes, describing the type of |
| 469 | mixin have access to the :attr:`~SingleObjectMixin.model` and |
| 470 | :attr:`~SingleObjectMixin.queryset` attributes, describing the type of |
471 | 471 | object that the ModelForm is manipulating. The view also provides |
472 | 472 | ``self.object``, the instance being manipulated. If the instance is being |
473 | 473 | created, ``self.object`` will be ``None`` |
… |
… |
ModelFormMixin
|
486 | 486 | Retrieve the form class to instantiate. If |
487 | 487 | :attr:`FormMixin.form_class` is provided, that class will be used. |
488 | 488 | Otherwise, a ModelForm will be instantiated using the model associated |
489 | | with the :attr:`~SingleObjectMixin.queryset``, or with the |
490 | | :attr:`~SingleObjectMixin.model``, depending on which attribute is |
| 489 | with the :attr:`~SingleObjectMixin.queryset`, or with the |
| 490 | :attr:`~SingleObjectMixin.model`, depending on which attribute is |
491 | 491 | provided. |
492 | 492 | |
493 | 493 | .. method:: get_form(form_class) |
… |
… |
MonthMixin
|
624 | 624 | .. method:: get_next_month(date) |
625 | 625 | |
626 | 626 | Returns a date object containing the first day of the month after the |
627 | | date provided. Returns `None`` if mixed with a view that sets |
| 627 | date provided. Returns ``None`` if mixed with a view that sets |
628 | 628 | ``allow_future = False``, and the next month is in the future. If |
629 | 629 | ``allow_empty = False``, returns the next month that contains data. |
630 | 630 | |
… |
… |
DayMixin
|
670 | 670 | .. method:: get_next_day(date) |
671 | 671 | |
672 | 672 | Returns a date object containing the next day after the date provided. |
673 | | Returns `None`` if mixed with a view that sets ``allow_future = False``, |
| 673 | Returns ``None`` if mixed with a view that sets ``allow_future = False``, |
674 | 674 | and the next day is in the future. If ``allow_empty = False``, returns |
675 | 675 | the next day that contains data. |
676 | 676 | |
… |
… |
BaseDateListView
|
792 | 792 | Returns the list of dates of type ``date_type`` for which |
793 | 793 | ``queryset`` contains entries. For example, ``get_date_list(qs, |
794 | 794 | 'year')`` will return the list of years for which ``qs`` has entries. |
795 | | See :meth:``~django.db.models.QuerySet.dates()` for the |
| 795 | See :meth:`~django.db.models.QuerySet.dates()` for the |
796 | 796 | ways that the ``date_type`` argument can be used. |
797 | 797 | |
798 | 798 | |