{% extends "engineering-tools-container.html" %} {% block head %} {{ block.super }} {% endblock %} {% block sub-content %} {% if marks %}
Total Elapsed Time
{{ total_elapsed|floatformat:6 }}s
{% for mark in marks %} {% if not forloop.first and mark.elapsed > 0 %}
{{ mark.elapsed|floatformat:6 }}s / {% widthratio mark.elapsed total_elapsed 100 %}%
{% endif %}

{{ forloop.counter }}. {{ mark.label }}

{% endfor %} {% else %}

No Time Marks Found

{% endif %} {% endblock %}