{% extends "backoffice/layout/layout.html.twig" %} {% block page_title %}{{ site_titre }} - Backoffice - Enseignants{% endblock %} {% block stylesheets %} {% endblock %} {% block h2 %}Enseignants{% endblock %} {% block content %}

Filtres

{{ form_start(form_filtres) }}
{{ form_label(form_filtres.enabled) }} {{ form_widget(form_filtres.enabled, { 'attr': {'class': 'form-control filtre'}, 'value': ''~filtre_enabled }) }}
{{ form_end(form_filtres) }}

Créer un enseignant

{% for user in utilisateurs %} {% endfor %}
Nom Prénom Email Identifiant Activé Dernière connexion NB évaluations
{{ user.nom }} {{ user.prenom }} {{ user.email }} {{ user.pseudo }} {% if user.enabled %} oui {% else %} non {% endif %} {% if user.lastLogin %}{{ user.lastLogin|date('d/m/Y H:i') }}{% endif %} {{ user.getNbCreatedEvaluations() }}
{% endblock %} {% block javascripts %} {% endblock %}