I am trying to do this:
{% for movie in movie_list | sort(movie.rating) %}
But that's not right...the documentation is vague...how do you do this in Jinja2?
|
|
|
As of version 2.6, Jinja2's built-in sort filter allows you to specify an attribute to sort by:
|
|||||
|
|
Usually we sort the list before giving it to Jinja2. There's no way to specify a key in Jinja's However, you can always try You can also try and write a custom filter for this. Seems silly when you can sort before giving the data to Jinja2. If If If |
|||||||
|