projects.html 891 B

12345678910111213141516171819202122232425262728293031
  1. {% extends "layout.html" %}
  2. {% block subtitle %}
  3. Liste des projets recencés
  4. {% endblock %}
  5. {% block body %}
  6. <div>
  7. <table class="table table-condensed table-striped table-hover">
  8. <thead>
  9. <tr>
  10. <th>Nom</th>
  11. <th>Zone</th>
  12. <th>Étape</th>
  13. <th></th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. {% for project in projects %}
  18. <tr>
  19. <td>{% autoescape false %}{{ project.is_member | member_to_label }}{% endautoescape %} &nbsp;{{ project.name }}</td>
  20. <td>{{ project.zone }}</td>
  21. {% autoescape false %}
  22. <td>{{ project.step | step_to_label }}</td>
  23. {% endautoescape %}
  24. <td><a class="pull-right btn btn-small" href="{{ url_for('project', projectid=project.id) }}"><i class="icon-search"></i></a>
  25. </tr>
  26. {% endfor %}
  27. </tbody>
  28. </table>
  29. <a class="pull-right btn btn-primary btn-small" href="">Ajoutez le votre !</a>
  30. </div>
  31. {% endblock %}