标签: django templates
在django模板中,对于每个类别,我遍历每个子类别。但是我如何对子类别进行排序?我需要它灵活,所以我可以选择我喜欢的东西。
{% for cat in categories %} {% for subcat in cat.subcategories_set.all%} {% endfor %} {% endfor %}
答案 0 :(得分:1)
您可以使用dictsort模板标记,它可以让您按任意键排序。 Documentation
dictsort