{% extends 'TdbBaseBundle::layout.html.twig' %} {% block title %}Accueil{% endblock %} {% block body %} {% if is_granted('ROLE_PRESTA_ADMIN') %} {% if prestationsNonPayee|length > 0 %}

Prestation{% if prestationsNonPayee|length > 1 %}s{% endif %} non payée{% if prestationsNonPayee|length > 1 %}s{% endif %} ({{ prestationsNonPayee|length }})

{% endif %} {% endif %} {% if is_granted('ROLE_PRET_USER') %}
{% if pretsNonRetournes|length > 0 %} {% if pretsNonRetournes|length >1 %} {% set title = 'Prêts non retournés (' ~ pretsNonRetournes|length ~ ')'%} {% else %} {% set title = 'Prêt non retourné (' ~pretsNonRetournes|length ~')' %} {% endif %} {{ include( 'TVn7PretBundle:Default:prets.html.twig', { 'prets': pretsNonRetournes, 'grid_col_size': 'col-md-12', 'block_color': 'danger', 'block_title': title } ) }} {% endif %}
{% endif %} {% if is_granted('ROLE_PRESTA_USER') %}
{% if prestationsCours|length > 0 %}

Prestation{% if prestationsCours|length >1 %}s{% endif %} en cours ({{ prestationsCours|length }})

{% endif %} {% if prestationsVenir|length > 0 %}

Prestation{% if prestationsVenir|length >1 %}s{% endif %} à venir ({{ prestationsVenir|length }})

{% endif %}
{% endif %} {% if is_granted('ROLE_PRET_USER') %}
{% if pretsCours|length > 0 %} {% if pretsCours|length >1 %} {% set title = 'Prêts en cours (' ~ pretsCours|length ~ ')'%} {% else %} {% set title = 'Prêt en cours (' ~ pretsCours|length ~')' %} {% endif %} {{ include( 'TVn7PretBundle:Default:prets.html.twig', { 'prets': pretsCours, 'grid_col_size': 'col-md-12', 'block_color': 'success', 'block_title': title } ) }} {% endif %} {% if pretsVenir|length > 0 %} {% if pretsVenir|length >1 %} {% set title = 'Prêts à venir (' ~ pretsVenir|length ~ ')'%} {% else %} {% set title = 'Prêt à venir (' ~pretsVenir|length ~')' %} {% endif %} {{ include( 'TVn7PretBundle:Default:prets.html.twig', { 'prets': pretsVenir, 'grid_col_size': 'col-md-12', 'block_color': 'info', 'block_title': title } ) }} {% endif %}
{% endif %} {% if is_granted('ROLE_NEWS_USER') %}
{% for n in news %}

{{ n.titre }}

{{ n.contenu|raw }}
{% endfor %}
{% endif %} {% endblock %}