Blame view

app/main/templates/projects.html 292 Bytes
3dae0d18   hitier   Projects list
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
  <thead>
  <tr>
    <th scope="col">Projet</th>
  </tr>
  </thead>
  <tbody>
  {% for project in projects %}
  <tr>
    <td>{{ project.name }}</td>
  </tr>
  {% endfor %}
  </tbody>
</table>
{% endblock %}