{% extends "base.html" %} {% from '_helpers.html' import external_links %} {% from '_helpers.html' import metric_table %} {% from '_helpers.html' import history_graph %} {% from '_helpers.html' import show_backtrace %} {% block title %}Report #{{ report.id }}{% endblock %} {% block js %} {% endblock js %} {% block body %}
{% if report.reasons %}

{{ report.reasons[0] }}

{% else %}

Info

{% endif %}
Problem
{% if report.problem_id %} {{ report.problem_id }} {% else %} An owning problem doesn't exist yet. {% endif %}
Component
{{ component.name }}
Created
{{ report.first_occurrence.strftime("%Y-%m-%d")}}
Last change
{{ report.last_occurrence.strftime("%Y-%m-%d")}}
Quality
{{ report.quality }}
{% if report.bugs %}
External links
{{ external_links(report.bugs) }}
{% endif %}
{# graphs #} {% if releases|length > 1 or arches|length > 1 %}

Graphs

{% endif %}
{# metrics #}

Statistics

{{ metric_table('Operating system', releases) }} {{ metric_table('Architecture', arches) }} {# {% with crashed_packages as packages %} {% with 'Package' as header %} {% include 'reports/packages.html' %} {% endwith %} {% endwith %} #} {{ metric_table('Related package NEVR', related_packages_nevr) }} {{ metric_table('Related package name', related_packages_name) }} {% if related_packages_name %}

Packages names with count less than the total count of reports are most probably not the cause of the problem.

{% endif %} {{ metric_table('SELinux modes', modes) }}

History

Daily:

{{ history_graph(daily_history, "daily") }}

Weekly:

{{ history_graph(weekly_history, "weekly") }}

Monthly:

{{ history_graph(monthly_history, "monthly") }}

Backtrace

{{ show_backtrace(backtrace, report.type, report.oops)}} {# comments #} {% if report.comments %}

Comments Attached by users who sent the report.

{% endif %}
{% endblock %}