{% extends "base.html" %} {% load custom_filters %} {% load url from future %} {% block title %}Problem #{{ problem.id }}{% endblock %} {% block submenu_append %}
  • Problem #{{ problem.id }}
  • {% endblock %} {% block js %} {% endblock %} {% block content %}

    Info

    Function
    {{ problem.crash_function }}
    First occurrence
    {{ problem.first_occurrence|date:"Y-m-d" }}
    Last occurrence
    {{ problem.last_occurrence|date:"Y-m-d" }}
    {% if problem.probable_fixes %}
    Probable fixes
    {{ problem.probable_fixes|join:"
    " }}
    {% endif %}
    Components
    {% for name in problem.unique_component_names %} {{ name }}{% if not forloop.last %}, {% endif %} {% endfor %}
    State
    {{ problem.status }}
    Quality
    {{ problem.quality }}
    {% if problem.bugs %}
    External links
    {% with problem.bugs as bugs %} {% include "external_links.html" %} {% endwith %}
    {% endif %}
    {# graphs #} {% if osreleases|length > 1 or arches|length > 1 %}

    Graphs

    {% endif %}
    {# metrics #}

    Statistics

    {% with 'Operating system' as metric_name %} {% with 3 as row_limit %} {% with osreleases 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 'Executable' as metric_name %} {% with 3 as row_limit %} {% with exes as data %} {% include 'metric_table.html' %} {% endwith %} {% endwith %} {% endwith %} {% with 'Package NEVR' as metric_name %} {% with 3 as row_limit %} {% with packages_nevr as data %} {% include 'metric_table.html' %} {% endwith %} {% endwith %} {% endwith %} {% with 'Package name' as metric_name %} {% with 3 as row_limit %} {% with packages_name as data %} {% include 'metric_table.html' %} {% endwith %} {% endwith %} {% endwith %} {% if packages_name %}

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

    {% endif %}

    Report backtrace

    {% for report in problem.reports %}
    {% with report.backtraces.0.frames as backtrace %} {% with report.type as type %} {% with report.oops as oops %} {% include 'reports/backtrace.html' %} {% endwith %} {% endwith %} {% endwith %}
    {% endfor %}
    {% if problem.reports|length > 1 %} Backtrace diff
    Diff
    {% endif %} View complete report
    {# comments #} {% if problem.comments %}

    Comments Attached by users who sent the report.

    {% endif %}
    {% endblock %}