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