Blame view

app/main/templates/agents.html 354 Bytes
d6836d5e   hitier   Agents list
1
2
3
4
5
6
7
8
9
{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
  <thead>
  <tr>
    <th scope="col">Nom</th>
    <th scope="col">Prénom</th>
  </tr>
  </thead>
3dae0d18   hitier   Projects list
10
  <tbody>
d6836d5e   hitier   Agents list
11
12
13
14
15
16
  {% for agent in agents %}
  <tr>
    <td>{{ agent.firstname }}</td>
    <td>{{agent.secondname}}</td>
  </tr>
  {% endfor %}
3dae0d18   hitier   Projects list
17
  </tbody>
d6836d5e   hitier   Agents list
18
19
</table>
{% endblock %}