summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
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