Info
- Function
-
{{ problem.crash_function|truncatechars:50 }}
- 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 %}
{% 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 %}
{{comment.text|linebreaksbr}}
Comment saved {{comment.saved|date:"Y-m-d"}}