{% load i18n %} {% load submit_parts %} {% if not protocol or not protocol.ready %}
{% trans 'Protocol is not available.'%}
{% else %} {% if protocol.compile_log_present %}

{% trans 'Compiler output' %}

{{ protocol.compile_log }}
{% endif %} {% if protocol.have_tests %} {% for test in protocol.tests %} {% if test.show_details %} {% endif %} {% endfor %}
{% trans 'Test case' %} {% trans 'Result' %} {% trans 'Run time' %}
{{ test.name }} {% if test.show_details %} {% trans 'Show details' %} {% endif %} {{ result|verbose:test.result }} {{ test.time }} ms
{{ test.details|linebreaksbr }}
{% endif %} {% endif %}