Blame view

app/main/templates/services.html 445 Bytes
a7e64a99   hitier   Services list
1
2
{% extends "base_page.html" %}
{% block content %}
9f86aeea   Anais Amato   Change navbar act...
3
4

<!-- Invisible span to definte wich ul and a in the navbar are actived -->
fd63e06e   Anais Amato   update coloration...
5
<span id="nav_actived" style="display: none">service,liste_services</span>
9f86aeea   Anais Amato   Change navbar act...
6

a7e64a99   hitier   Services list
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<table class="table table-hover">
  <thead>
  <tr>
    <th scope="col">Service</th>
  </tr>
  </thead>
  <tbody>
  {% for service in services %}
  <tr>
    <td>{{ service.name }}</td>
  </tr>
  {% endfor %}
  </tbody>
</table>
{% endblock %}