{% extends 'bridge/base.html' %} {% comment "License" %} % Copyright (c) 2019 ISP RAS (http://www.ispras.ru) % Ivannikov Institute for System Programming of the Russian Academy of Sciences % % Licensed under the Apache License, Version 2.0 (the "License"); % you may not use this file except in compliance with the License. % You may obtain a copy of the License at % % http://www.apache.org/licenses/LICENSE-2.0 % % Unless required by applicable law or agreed to in writing, software % distributed under the License is distributed on an "AS IS" BASIS, % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % See the License for the specific language governing permissions and % limitations under the License. {% endcomment %} {% load i18n %} {% load static %} {% load compress %} {% block title %}{% trans 'Safe' %}{% endblock %} {% block head_block %} {% if coverage %} {% compress js file coverage %} {% endcompress %} {% endif %} {% compress js file leaf %} {% endcompress %} {% if coverage %} {% compress css file coverage %} {% endcompress %} {% endif %} {% compress css file leaf %} {% endcompress %} {% endblock %} {% block body_block %}
{% trans 'Decision' %}: {{ report.decision.name }}
{% if report.decision.operator %} {% trans 'Author' %}: {{ report.decision.operator.get_full_name }} {% endif %}
{% if parents %}{% include 'reports/parents_breadcrumb.html' with parents=parents %}{% endif %}
{% if coverage %} {% trans 'Download code coverage' %} {% include 'reports/coverage/coverageNavigation.html' with statistics=coverage %}
{% trans 'Highlight selected identifier' %}
{% endif %}
{% if coverage %}
{% include 'reports/coverage/CoverageStatistics.html' with statistics=coverage %}
{% else %}
{% trans 'The report does not have code coverage' %}
{% endif %}
{% if resources %} {% endif %}
{% if coverage %} {% endif %} {% if verifier_files_url %} {% trans 'Download verifier input files' %} {% endif %}


{% if coverage %}
 
{% trans 'Data' %}
{% trans 'Legend' %}
{% endif %}
{% if MarkTable.can_mark %} {% endif %}

{% trans 'Associated marks' %}

{% if MarkTable.can_mark %} {% trans 'Create lightweight mark' %} {% trans 'Create full-weight mark' %} {% endif %}
{% include 'reports/AssociatedMarksTable.html' with MarkTable=MarkTable %}
{% if coverage %} {# Code coverage data statistics modal #} {% include 'reports/coverage/coverageDataStatisticsModal.html' with DataStatistics=coverage.data_statistic %} {% endif %} {% endblock %}