Blame view

app/main/templates/categories.html 486 Bytes
1e327d7a   hitier   New categories page
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base_page.html" %}
{% block content %}

  <!-- Invisible span to definte wich ul and a in the navbar are actived -->
  <span id="nav_actived" style="display: none">project,categories</span>

  <table class="table table-hover">
    <thead>
    <tr>
      <th scope="col">Catégorie</th>
    </tr>
    </thead>
    <tbody>
    {% for category in categories %}
      <tr>
        <td>{{ category.name }}</td>
      </tr>
    {% endfor %}
    </tbody>
  </table>
{% endblock %}