Fixed #31620 -- Added support for %V format to WeekMixin/WeekArchiveView.

Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
This commit is contained in:
Hasan Ramezani 2020-06-25 23:00:51 +02:00 committed by Mariusz Felisiak
parent d2c135da4c
commit 8984cab8a8
6 changed files with 55 additions and 9 deletions

View file

@ -342,6 +342,12 @@ views for displaying drilldown pages for date-based data.
* ``'%W'``: Similar to ``'%U'``, except it assumes that the week
begins on Monday. This is not the same as the ISO 8601 week number.
* ``'%V'``: ISO 8601 week number where the week begins on Monday.
.. versionadded:: 3.2
Support for the ``'%V'`` week format was added.
**Example myapp/views.py**::
from django.views.generic.dates import WeekArchiveView