{% extends 'TdbBaseBundle::layout.html.twig' %} {% block title %}Postes{% endblock %} {% block body %}

Gestion des postes

Ajouter un poste

Liste des postes

{% for poste in postes %} {% endfor %}
Nom Type Publiquement visible Nombre Permissions automatiques Actions
{{ poste.name }} {{ poste.type|capitalize }} {% if poste.publicVisible == true %} Oui {% else %} Non {% endif %} {{ poste.membres|length }} {% for role in poste.roles %}{{ permsFR[role] }}{% if not loop.last %}, {% endif %}{% endfor %} Editer
{% endblock %}