{% extends 'admin/base.html.twig' %} {% set pageSection = "rating" %} {% block content %}

Gestion des systèmes de notation

{{ include('form/searchBar.html.twig') }}
{# Title + Search bar + create new option #}
{{ knp_pagination_render(ratings) }}

Nombre de notations: {{ ratings.getTotalItemCount }}


{% for rating in ratings %}
{{ rating.name|upper }}

Bases: {% for ato in rating.atos %} {{ ato }} {{ loop.last ? '' : ';' }} {% endfor %}

Nombre de notes: {{ rating.ratingValues|length }}

{# Informations section #}

Actions

{# Actions section#}
{% else %}

Aucun enregistrement trouvé

{% endfor %} {# Ratings list #}
{% endblock %}