Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
djangoテンプレートでは、カテゴリごとに、各サブカテゴリを繰り返し処理します。しかし、サブカテゴリを並べ替えるにはどうすればよいですか?何を並べ替えるかを選択できるように、柔軟である必要があります。
{% for cat in categories %} {% for subcat in cat.subcategories_set.all%} {% endfor %} {% endfor %}
テンプレートタグを使用するdictsortと、任意のキーで並べ替えることができます。ドキュメンテーション
dictsort