{% extends 'economy/economy_base.html.twig' %} {% block title %}{{ category }}{% endblock %} {% block right %} {% if uncategorized is defined and uncategorized is not null %}
Uncategorized
{% for item in uncategorized %} {% endfor %}
{% endif %} {% if categorized is defined and categorized is not null %} {% for subcategoryName, allItems in categorized %}
{{ subcategoryName }}
{% for batch in allItems|batch(4) %}
{% for item in batch %} {% endfor %}
{% endfor %}
{% endfor %} {% endif %} {% endblock %}