{% from "macros/pagination.html" import pagination %} {% if query.total > 0 %}
| Crash ID | {% for column in columns %}{{ column | replace('_', ' ') | capitalize }} | {% endfor %}
|---|---|
| {{ crash.uuid }} | {% for column in columns %}{% if crash[column] %} {% if column == 'date' %} {{ crash[column] | human_readable_iso_date }} {% else %} {{ crash[column] }} {% endif %} {% endif %} {% if column == 'signature' %} Signature report {% endif %} | {% endfor %}
| Rank | {{ facet | replace('_', ' ') | capitalize }} | Count | % | {% if facet == 'signature' %}Bugs | {% endif %}
|---|---|---|---|---|
| {{ loop.index }} | {{ hit.term }} {% if facet == 'signature' %} Signature report {% endif %} | {{ hit.count }} | {{ '%.2f' | format(100.0 * hit.count / query.total) }} % | {% if facet == 'signature' %}{% for bug in hit.bugs %} {{ show_bug_link(bug) }} {% endfor %} | {% endif %}
No results were found.
{% endif %}