agents.html 387 Bytes
{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
  <thead>
  <tr>
    <th scope="col">Nom</th>
  </tr>
  </thead>
  <tbody>
  {% for agent in agents %}
  <tr>
    <td><a href="{{url_for('main.agent', agent_id=agent.id)}}">
      {{ agent.firstname }}
      {{ agent.secondname }}
    </a></td>
  </tr>
  {% endfor %}
  </tbody>
</table>
{% endblock %}