标签: django django-models django-templates
在Django模板中,当我遍历反向查找中的所有对象时,如何指定顺序:
{% for item in object.other_set.all %} <p>item.text</p> {% endfor %}
假设我希望按item.creation_date然后按item.text排序?