projects.html 444 Bytes
{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
  <thead>
  <tr>
    <th scope="col">Projet</th>
    <th scope="col">Charge</th>
  </tr>
  </thead>
  <tbody>
  {% for project in projects %}
  <tr>
    <td><a href="{{url_for('main.project', project_id=project.id)}}">
      {{ project.name }}</a>
    </td>
    <td>{{ project.total_charge }} % </td>
  </tr>
  {% endfor %}
  </tbody>
</table>
{% endblock %}