{% 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 tz %} {% load static %} {% load compress %} {% load tableheader %} {% block title %}{{ report.component }}{% endblock %} {% block head_block %} {% compress css file report %} {% endcompress %} {% compress js file report %} {% endcompress %} {% endblock %} {% block body_block %}
{% if report.decision.operator %} {% endif %} {% if status.name %} {% endif %}

{{ report.component }}

{% trans 'Author' %} {{ report.decision.operator.get_full_name }}
{% trans 'Decision' %} {{ report.decision.name }}
{% trans 'Status' %} {% if status.href %} {{ status.name }} {% else %} {{ status.name }} {% endif %}
{% trans 'Computer' %} {{ report.computer.display }}

{% if report.log %} {% endif %} {% if report.verifier_files %} {% trans 'Download verifier input files' %} {% endif %}
{% if SelfAttrsData.values|length %}

{% trans 'Attributes' %}

{% tableheader SelfAttrsData.columns 0 %} {% for v, attr_id in SelfAttrsData.values %} {% endfor %}
{% if attr_id %} {{ v }} {% else %} {{ v }} {% endif %}
{% endif %} {% if data.data %}

{% trans 'Data' %}

{% include 'reports/ReportData.html' with data=data.data type=data.type stats=data.stats %}
{% endif %} {% if Coverage %} {% include 'jobs/viewDecision/coverage.html' with Coverage=Coverage %} {% elif VerificationCoverage and VerificationCoverage.statistics|length %}
{% trans 'Code coverage' %}
{% include 'jobs/viewDecision/coverageTable.html' with statistics=VerificationCoverage.statistics %}
{% endif %} {% if images|length %}

{% trans 'Report images' %}

{% for image in images|sort_list %} {% endfor %}
{% trans 'Name' %}  
{{ image.title }}
{% endif %}
{% if parents|length %} {% include 'reports/parents_breadcrumb.html' with parents=parents %} {% endif %}

{% trans 'Children' %}

{% include TableData.view.template with view=TableData.view %} {% if TableData.values|length %}
{% if TableData.page.has_previous %} {% endif %} {% blocktrans with n1=TableData.page.number n2=TableData.paginator.num_pages %}Page {{ n1 }} of {{ n2 }}{% endblocktrans %} {% if TableData.page.has_next %} {% endif %}
{% tableheader TableData.columns TableData.titles %} {% for row in TableData.values %} {% for cell_data in row %} {% endfor %} {% endfor %}
{% if cell_data.href %} {{ cell_data.value }} {% else %} {{ cell_data.value }} {% endif %}
{% else %}

{% trans 'There is no children, please wait for them or change the view' %}

{% endif %}

{% trans 'Statistics on component and its children' %}

{% include reportdata.view.template with view=reportdata.view %}
{% include 'jobs/DecisionResults.html' %}
{% endblock %}