{% extends 'base.html' %} {% load widget_tweaks %} {% load param %} {% load url_link %} {% block content %}
{% if progress_bar == 1 %}
{% for space in space_info_list %} {% if space.tool != -1 %}
{{space.tool_name}}
{% endif %} {% endfor %}
{% for space in space_info_list %} {% if forloop.last %} {{space.tool_name}}: {{space.size_total}} {% else %} {{space.tool_name}}: {{space.size_total}} / {% endif %} {% endfor %}
{% endif %}
{% include "projects/display_items_tree.html" with items=project.items %} {% if project.items %} {% else %}

Your project "{{project.name}}" is empty,

please start by adding a new investigation
{% endif %}
{% endblock %}