{% 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 head_block %} {# Jstree #} {% compress js file decision %} {% endcompress %} {% endblock %} {% block title %}{% trans 'Job version' %} ({{ object.get_status_display }}){% endblock %} {% block body_block %}
{# Decision menu #} {# Decision data table #}
{{ object.name }}{% if object.weight == '1' %} - {{ object.get_weight_display|lower }}{% endif %}
{% trans 'Identifier' %}{{ object.identifier }}
{% trans 'Job version parents' %} {% include 'jobs/parents.html' with parents=parents parent_job=object.job %}
{% if object.operator %} {% endif %}
{% trans 'Scheduler' %}{{ object.scheduler.get_type_display }}
{% trans 'Priority' %}{{ object.get_priority_display }}
{% trans 'Operator' %} {{ object.operator.get_full_name }}
{# Files tree #} {% include 'jobs/filesTree.html' with data=files div_id='filestree_container' %}
{# Decision #}
{% include 'jobs/viewDecision/progress.html' with decision=object progress=progress core_link=core_link %}

{# Other decisions table #} {% if other_decisions|length %}
{% trans 'Other job versions' %}
{% include 'jobs/decision-list.html' with decisions=other_decisions %}
{% endif %} {# Coverage #} {% include 'jobs/viewDecision/coverage.html' with Coverage=Coverage %}
{# Data with verification results #} {% include reportdata.view.template with view=reportdata.view %}
{% include 'jobs/DecisionResults.html' %}
{# Download verifier files modal #} {% if access.can_download_verifier_files %} {% endif %} {% if access.can_rename %} {% endif %} {% include 'bridge/warn_modal.html' with warn_modal_id='restart_decision_modal' %} {% include 'bridge/warn_modal.html' with warn_modal_id='remove_decision_modal' %} {% include 'bridge/warn_modal.html' with warn_modal_id='collapse_reports_modal' %} {% include 'bridge/warn_modal.html' with warn_modal_id='clear_verifier_files_modal' %} {% include 'bridge/warn_modal.html' with warn_modal_id='stop_decision_modal' %} {% endblock %}