project_list_macro.html 1.1 KB

123456789101112131415161718192021222324252627
  1. {% macro project_list(projects) -%}
  2. <table class="project-list table table-condensed table-striped table-hover">
  3. <thead>
  4. <tr>
  5. <th>{{ _("Name") }}</th>
  6. <th>{{ _("Areas") }}</th>
  7. <th>{{ _("Step")}}</th>
  8. <th></th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. {% for project in projects -%}
  13. <tr>
  14. <td><a href="{{ url_for('.project', projectid=project.id) }}">{{ project.name|truncate(60, True) }}</a></td>
  15. <td>{{ ', '.join(project.covered_areas_names())|truncate(30) }}</td>
  16. <td>
  17. {{ project.json.progressStatus|step_to_label|safe }}
  18. {%- if project.is_ffdn_member %}
  19. &thinsp;<a href="#" data-toggle="tooltip" data-placement="right" title="{{ _("Member of the FDN Federation") }}"><span class="label label-info">FFDN</span></a>
  20. {%- endif %}
  21. </td>
  22. <td><a class="pull-right btn btn-small" title="{{ _("Examine") }}" href="{{ url_for('.project', projectid=project.id) }}"><i class="icon-search"></i></a>
  23. </tr>
  24. {% endfor -%}
  25. </tbody>
  26. </table>
  27. {%- endmacro %}