in my django view, if i import operator, and use the following code:

multitags = sorted(multitags, key=operator.attrgetter('date_added'))

is there an easy way to reverse the order – such that i get the dates in descending order (today at top; last week underneath)?

link|improve this question
feedback

2 Answers

This should work:

sorted(multitags, key=operator.attrgetter('date_added'), reverse=True)

This document on the python wiki is worth reading through at least once to get an idea of other things worth knowing:

link|improve this answer
you guys rock! thanks much. – kjarsenal Jul 15 '09 at 5:35
feedback

Sure, just add reverse=True to the keyword arguments with which you're calling .sorted!

link|improve this answer
you guys rock! thank you Alex. – kjarsenal Jul 15 '09 at 5:35
feedback

Your Answer

 
or
required, but never shown