{% 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 cache %} {% if data %} {% for line in data.source_lines %} {% if line.note %} {{ line.note.1 }} {% endif %} {{ line.number_prefix }}{{ line.number }} {{ line.code|safe }} {% endfor %} {% if data.references|length %} {% for ref_data in data.references %} {% include 'reports/References.html' with ref_data=ref_data source_files=data.source_files %} {% endfor %} {% endif %} {% for file_ind, file_name in data.source_files %} {% endfor %} {# Should be after access to data.source_files as coverage_id is set during source lines collecting #} {% if data.coverage_id %} {% endif %} {% if data.with_legend and data.legend %} {% endif %} {% else %}
{% trans 'You can try another level of code coverage details when starting decision to get the given source file' %}
{% endif %}