Blame view

app/main/templates/projects.html 457 Bytes
3dae0d18   hitier   Projects list
1
2
3
4
5
6
{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
  <thead>
  <tr>
    <th scope="col">Projet</th>
f8e1465a   hitier   New projects list...
7
    <th scope="col">Charge</th>
3dae0d18   hitier   Projects list
8
9
10
11
12
  </tr>
  </thead>
  <tbody>
  {% for project in projects %}
  <tr>
f8e1465a   hitier   New projects list...
13
14
15
16
17
18
    <td><a href="{{url_for('main.project', project_id=project.id)}}">
      {{ project.name }}</a>
    </td>
    <td>
      {{ project.total_charge }}</a>
    </td>
3dae0d18   hitier   Projects list
19
20
21
22
23
  </tr>
  {% endfor %}
  </tbody>
</table>
{% endblock %}