{% extends "modal/content.html" %} {% load converter %} {% block modal_styles %}modal-lg{% endblock %} {% block modal_title %} {{ object.name }} | History {% endblock %} {% block modal_body %}
{% for stretch in object.children_history.active %} {% endfor %} {% for stretch in object.children_history.with_duration|slice:"50" %} {% endfor %}
Container Start End Loaded Time
{{ stretch.child.project }} | {{ stretch.child.name }} {{ stretch.location }} {{ stretch.start }} {{ stretch.end }} {{ stretch.duration|default:"Active" }} {% if stretch.duration %}minutes{% endif %}
{{ stretch.child.project }} | {{ stretch.child.name }} {{ stretch.location }} {{ stretch.start }} {{ stretch.end }} {{ stretch.duration|humanize_duration|default:"0 minutes" }}
{% endblock %}