{{ "%resultsCount% result(s) found"|trans({'%resultsCount%': blogPostCategories.getTotalItemCount}) }}
{% if blogPostCategories.getTotalItemCount > 0 %}
| {{'Name' | trans}} |
{{'Blog posts count' | trans}} |
{{'Status' | trans}} |
|
{% for blogPostCategory in blogPostCategories %}
|
{{ blogPostCategory.name }}
|
{{ blogPostCategory.blogPosts|length }}
|
{% if blogPostCategory.hidden %}
{{ "Hidden"|trans }}
{% else %}
{{ "Visible"|trans }}
{% endif %}
|
|
{% endfor %}
{{ knp_pagination_render(blogPostCategories, null, {}, {'align': 'center'}) }}
{% else %}
{% include "Global/message.html.twig" with { type: "info", message: ('No blog post categories found'|trans), icon: "fas fa-exclamation-circle" } %}
{% endif %}