{% trans 'Planned start' %}:
{{ object.planned_start|default:'-'}}
{% trans 'Started at' %}:
{{ object.start_date|default:'-' }}
{% if not object.start_date %}
{% endif %}
{% trans 'Planned stop' %}:
{{ object.planned_stop|default:'-' }}
{% trans 'Finished at' %}:
{{ object.stop_date|default:'-' }}
{% if not object.stop_date %}
{% endif %}
{% for status in execution_statuses%}
-
{% endfor %}
-
{{ object.notes|markdown2html }}
{% trans "Environment" as environment_title %}
{% include "include/properties_card.html" with card_title=environment_title hide_add_button=True hide_delete_button=True %}
{% include 'include/tags_card.html' with add_perm=perms.testruns.add_testruntag %}