mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #31620 -- Added support for %V format to WeekMixin/WeekArchiveView.
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
This commit is contained in:
parent
d2c135da4c
commit
8984cab8a8
6 changed files with 55 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue