summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2020-06-25 23:00:51 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-06-26 11:12:57 +0200
commit8984cab8a80af8555b1ccfa5b552d411b47f9bca (patch)
tree0951ce3e3396d696a2a28595d4019e1becd0abc9 /docs/ref
parentd2c135da4c75079e45661ec609bd72f27dddf2a9 (diff)
Fixed #31620 -- Added support for %V format to WeekMixin/WeekArchiveView.
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/class-based-views/generic-date-based.txt6
-rw-r--r--docs/ref/class-based-views/mixins-date-based.txt7
2 files changed, 12 insertions, 1 deletions
diff --git a/docs/ref/class-based-views/generic-date-based.txt b/docs/ref/class-based-views/generic-date-based.txt
index a42896c058..dcfb16e54b 100644
--- a/docs/ref/class-based-views/generic-date-based.txt
+++ b/docs/ref/class-based-views/generic-date-based.txt
@@ -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
diff --git a/docs/ref/class-based-views/mixins-date-based.txt b/docs/ref/class-based-views/mixins-date-based.txt
index 471e222a6e..95e1868d1b 100644
--- a/docs/ref/class-based-views/mixins-date-based.txt
+++ b/docs/ref/class-based-views/mixins-date-based.txt
@@ -180,7 +180,12 @@ Date-based mixins
The :func:`~time.strftime` format to use when parsing the week. By
default, this is ``'%U'``, which means the week starts on Sunday. Set
- it to ``'%W'`` if your week starts on Monday.
+ it to ``'%W'`` or ``'%V'`` (ISO 8601 week) if your week starts on
+ Monday.
+
+ .. versionadded:: 3.2
+
+ Support for the ``'%V'`` week format was added.
.. attribute:: week