Blame view

app/main/templates/labels.html 708 Bytes
ec68fbf2   hitier   New labels page
1
2
3
4
5
6
7
8
9
{% 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,labels</span>

  <table class="table table-hover">
    <thead>
    <tr>
30af2165   hitier   New edit/delete b...
10
      <th scope="col" class="col-10">Labels</th>
f437a4d0   hitier   Use feather-link ...
11
      <th scope="col" class="col-1">Éditer</th>
ec68fbf2   hitier   New labels page
12
13
14
15
16
17
    </tr>
    </thead>
    <tbody>
    {% for label in labels %}
      <tr>
        <td>{{ label.name }}</td>
f437a4d0   hitier   Use feather-link ...
18
19
        <td>{{ commons.edit_link(url_for('main.label_edit', label_id=label.id)) }}
            {{ commons.delete_link( url_for('main.label_delete', label_id=label.id)) }}</td>
ec68fbf2   hitier   New labels page
20
21
22
23
24
      </tr>
    {% endfor %}
    </tbody>
  </table>
{% endblock %}