{{ "%resultsCount% result(s) found"|trans({'%resultsCount%': categories.getTotalItemCount}) }}
{{ "Sort by"|trans }}
{{ knp_pagination_sortable(categories, "Creation date"|trans ~ ' (' ~ "desc"|trans ~ ')', "c.createdAt", {"direction": "desc", "criteria": "c.createdAt"}) }}
{{ knp_pagination_sortable(categories, "Creation date"|trans ~ ' (' ~ "asc"|trans ~ ')', "c.createdAt", {"direction": "asc", "criteria": "c.createdAt"}) }}
{% if categories.getTotalItemCount > 0 %}
{{'Name' | trans}}
{{'Articles count' | trans}}
{{'Icon' | trans}}
{{'Status' | trans}}
{% for category in categories %}
{% if category.parent is not null %}
{{ category.parent.name }}
{% if category.parent.parent is not null %}
{{ category.parent.parent.name }}
{% endif %}
{% endif %}
{{ category.name }}
{{ category.articles|length }}
{% if category.hidden %}
{{ "Hidden"|trans }}
{% else %}
{{ "Visible"|trans }}
{% endif %}
{% endfor %}
{{ knp_pagination_render(categories, null, {}, {'align': 'center'}) }}
{% else %}
{% include "Global/message.html.twig" with { type: "info", message: ('No categories found'|trans), icon: "fas fa-exclamation-circle" } %}
{% endif %}