{# Copyright (C) 2013 Matthieu Caneill License: GNU Affero General Public License, version 3 or above. #} {% extends "base.html" %} {% import "macros.inc.html" as macros %} {% block head %} {{ super() }} {% endblock %} {% block title %}Result{% endblock %} {% block content %}

{{ self.title() }}

{% if result.location.point %} {% set startline = result.location.point.line %} {% set endline = None %} {% elif result.location.range_ %} {% set startline = result.location.range_.start.line %} {% set endline = result.location.range_.end.line %} {% else %} {% set startline = 1 %} {% set endline = None %} {% endif %} {% if result.analysis.metadata.sut.type == "source-rpm" %} {% set type = "fedora" %} {% else %} {% set type = "debian" %} {% endif %}

Result

{{ macros.render_result(result) }}

Metadata

{{ macros.render_metadata(result.analysis.metadata) }}

go to source code page
{% endblock %}