{% extends 'base.html' %} {% block title %}Motif Index{% endblock %} {% block content %} {% for category_id, name in category_info %} {{ name }} {% for motif_id, motif, category, count in motif_info if category == category_id %} {{ motif }} {% if count %} x{{ count }} {% endif %} {% endfor %} {% endfor %} Misc. {% for motif_id, motif, category, count in motif_info if category == '' %} {{ motif }} {% if count %} x{{ count }} {% endif %} {% endfor %} {% endblock %}