{% for row in rows %} {% set compartment = row.hutch %} {% set residents = compartment.rabbits | selectattr('status', 'in', ['Resident', 'Fostering']) | list %} {% if loop.first %} {{ letter }} {% endif %} {% if row.floor %} {{ row.floor }} {% else %} Only {% endif %} {% if row.span %} {% if residents %}{{ residents | map(attribute='name') | join(', ') }}{% else %}empty{% endif %} {% endif %} {% if loop.first %}
{% endif %} {% endfor %}