Commit 80c0cbf1 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Clarified warning about date-based generic views.

parent 46b082e0
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -750,9 +750,15 @@ DateMixin

        When :doc:`time zone support </topics/i18n/timezones>` is enabled and
        ``date_field`` is a ``DateTimeField``, dates are assumed to be in the
        current time zone. As a consequence, if you have implemented per-user
        time zone selection, users living in different time zones may view a
        different set of objects at the same URL.
        current time zone. Otherwise, the queryset could include objects from
        the previous or the next day in the end user's time zone.

        .. warning::

            In this situation, if you have implemented per-user time zone
            selection, the same URL may show a different set of objects,
            depending on the end user's time zone. To avoid this, you should
            use a ``DateField`` as the ``date_field`` attribute.

    .. attribute:: allow_future