{{ "%resultsCount% result(s) found"|trans({'%resultsCount%': categories.getTotalItemCount}) }}
{% if categories.getTotalItemCount > 0 %}
{{'Name' | trans}} |
{{'Events count' | trans}} |
{{'Icon' | trans}} |
{{'Image' | trans}} |
{{'Is featured' | trans}} |
{{'Status' | trans}} |
|
{% for category in categories %}
{{ category.name }}
|
{{ category.events|length }}
|
|
|
{% if category.featured %}
{{ "Yes"|trans }} {% if category.featuredorder %}( {{ "Order ="|trans }} {{ category.featuredorder }} ){% endif %}
{% else %}
{{ "No"|trans }}
{% endif %}
|
{% if category.hidden %}
{{ "Hidden"|trans }}
{% else %}
{{ "Visible"|trans }}
{% endif %}
{% if category.deletedAt %}
{{ "Deleted"|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 %}