labels.html 588 Bytes
{% 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>
      <th scope="col">Edit</th>
    </tr>
    </thead>
    <tbody>
    {% for label in labels %}
      <tr>
        <td>{{ label.name }}</td>
        <td><a href="{{ url_for('main.label_edit', label_id=label.id) }}">edit</a></td>
      </tr>
    {% endfor %}
    </tbody>
  </table>
{% endblock %}