{% extends "main.html" %} {% load static %} {% block title %}Annuaire{% endblock %} {% block content %}

{% if q %}Résultat de la recherche {% if resultats %}vcard{% endif %}{% else %}Rechercher dans l’annuaire{% endif %}

{% if q %} Nombre de résultats trouvés : {{ resultats|length }}.
{% for user in resultats %}
Photo de {{ user.prenom }}
{{ user.prenom }} {{ user.nom }}

{{ user.filiere.get.shortName }}
{{ user.promo }}

{% empty %}
  • Vous pouvez rechercher une personne en indiquant son nom, prénom, ou login INP-net.
  • Vous pouvez également obtenir le trombinoscope d’une promo en entrant son identifiant, par exemple « {{ filieres|random }} 2012 », ou encore « 1A {{ filieres|random }} ».

La recherche n’a donné aucun résultat… {% endfor %}
{% else %}
{% endif %}
{% endblock %}