{% extends "base.html" %} {% load url from future %} {% load custom_filters %} {% block title %}Report #{{ report.id }}{% endblock %} {% block submenu_append %}
  • Report #{{ report.id }}
  • {% endblock %} {% block js %} {% endblock %} {% block content %}
    {% 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|date:"Y-m-d" }}
    Last change
    {{ report.last_occurrence|date:"Y-m-d" }}
    Quality
    {{ report.quality }}
    {% if report.bugs %}
    External links
    {% with report.bugs as bugs %} {% include "external_links.html" %} {% endwith %}
    {% endif %}
    {# graphs #} {% if releases|length > 1 or arches|length > 1 %}

    Graphs

    {% endif %}
    {# metrics #}

    Statistics

    {% with 'Operating system' as metric_name %} {% with 3 as row_limit %} {% with releases as data %} {% include 'metric_table.html' %} {% endwith %} {% endwith %} {% endwith %} {% with 'Architecture' as metric_name %} {% with 3 as row_limit %} {% with arches as data %} {% include 'metric_table.html' %} {% endwith %} {% endwith %} {% endwith %} {% with crashed_packages as packages %} {% with 'Package' as header %} {% include 'reports/packages.html' %} {% endwith %} {% endwith %} {% with 'Related package NEVR' as metric_name %} {% with 3 as row_limit %} {% with related_packages_nevr as data %} {% include 'metric_table.html' %} {% endwith %} {% endwith %} {% endwith %} {% with 'Related package name' as metric_name %} {% with 3 as row_limit %} {% with related_packages_n as data %} {% include 'metric_table.html' %} {% endwith %} {% endwith %} {% endwith %} {% if related_packages_n %}

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

    {% endif %} {% with 'Selinux modes' as metric_name %} {% with 3 as row_limit %} {% with modes as data %} {% include 'metric_table.html' %} {% endwith %} {% endwith %} {% endwith %}

    History

    Daily:

    {% with daily_history as history %} {% with 'daily' as datefmt %} {% include 'reports/history_graph.html' %} {% endwith %} {% endwith %}

    Weekly:

    {% with weekly_history as history %} {% with 'weekly' as datefmt %} {% include 'reports/history_graph.html' %} {% endwith %} {% endwith %}

    Monthly:

    {% with monthly_history as history %} {% with 'monthly' as datefmt %} {% include 'reports/history_graph.html' %} {% endwith %} {% endwith %}

    Backtrace

    {% with report.type as type %} {% with report.oops as oops %} {% include 'reports/backtrace.html' %} {% endwith %} {% endwith %} {# comments #} {% if report.comments %}

    Comments Attached by users who sent the report.

    {% endif %}
    {% endblock %}