projects.html 984 B

123456789101112131415161718192021222324252627282930313233
  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>Services</th>
  13. <th>Étape</th>
  14. <th></th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. {% for project in projects %}
  19. <tr>
  20. <td>{% autoescape false %}{{ project.is_member | member_to_label }}{% endautoescape %} &nbsp;{{ project.name }}</td>
  21. <td>{{ project.zone }}</td>
  22. <td>{{ project.services }}</td>
  23. {% autoescape false %}
  24. <td>{{ project.step | step_to_label }}</td>
  25. {% endautoescape %}
  26. <td><a class="pull-right btn btn-small" href="{{ url_for('project', projectid=project.id) }}"><i class="icon-search"></i></a>
  27. </tr>
  28. {% endfor %}
  29. </tbody>
  30. </table>
  31. <a class="pull-right btn btn-primary btn-small" href="{{ url_for('create_project') }}">Ajoutez le votre !</a>
  32. </div>
  33. {% endblock %}