{% extends "base.html" %} {% 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" }}
    {% 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_packages as packages %} {% with 'Related package' as header %} {% include 'reports/packages.html' %} {% endwith %} {% endwith %} {% 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 %}
    {% endblock %}