How do I convince WeekArchiveView that Monday is the first day of week?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Juding by this diff, it is achieved by adding week_format parameter to urls.py:

url(r'^items/(?P<year>\d{4})/week/(?P<week>\d{1,2})/$', ItemArchiveView.as_view(
    week_format='%W'
)),
link|improve this answer
are you answering your own question :? – pyInTheSky Oct 5 '11 at 18:03
@pyInTheSky I am – Dan Abramov Oct 5 '11 at 19:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.