Blame view

app/main/templates/labels.html 588 Bytes
ec68fbf2   hitier   New labels page
1
2
3
4
5
6
7
8
9
10
{% 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>
      <th scope="col">Labels</th>
85ee3eec   hitier   Completed Label e...
11
      <th scope="col">Edit</th>
ec68fbf2   hitier   New labels page
12
13
14
15
16
17
    </tr>
    </thead>
    <tbody>
    {% for label in labels %}
      <tr>
        <td>{{ label.name }}</td>
85ee3eec   hitier   Completed Label e...
18
        <td><a href="{{ url_for('main.label_edit', label_id=label.id) }}">edit</a></td>
ec68fbf2   hitier   New labels page
19
20
21
22
23
      </tr>
    {% endfor %}
    </tbody>
  </table>
{% endblock %}