project_list.html 1.0 KB

123456789101112131415161718192021222324252627282930
  1. {% extends "layout.html" %}
  2. {% block page_title %}{{ _("Project List") }}{% endblock %}
  3. {% block body %}
  4. <div>
  5. <table class="table table-condensed table-striped table-hover">
  6. <thead>
  7. <tr>
  8. <th>{{ _("Name") }}</th>
  9. <th>{{ _("Areas") }}</th>
  10. <th>{{ _("Step")}}</th>
  11. <th></th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {% for project in projects -%}
  16. <tr>
  17. <td>{% autoescape false %}{{ project.isFFDNMember | member_to_label }}{% endautoescape %} &nbsp;
  18. <a href="{{ url_for('project', projectid=project.id) }}">{{ project.name }}</a></td>
  19. <td>{{ project.zone }}</td>
  20. {% autoescape false -%}
  21. <td>{{ project.json.progressStatus|step_to_label }}</td>
  22. {%- endautoescape %}
  23. <td><a class="pull-right btn btn-small" href="{{ url_for('project', projectid=project.id) }}"><i class="icon-search"></i></a>
  24. </tr>
  25. {% endfor -%}
  26. </tbody>
  27. </table>
  28. <a class="pull-right btn btn-primary btn-small" href="{{ url_for('add_project') }}">{{ _("Add my project") }}</a>
  29. </div>
  30. {% endblock %}