{% from "macros/pagination.html" import pagination %} {% if query.total > 0 %}
{{ pagination(query, current_url, current_page) }} {% for column in columns %} {% endfor %} {% for crash in query.hits %} {% for column in columns %} {% endfor %} {% endfor %}
Crash ID{{ column | replace('_', ' ') | capitalize }}
{{ crash.uuid }} {% if crash.cpu_info %} {% if is_dangerous_cpu(crash.cpu_arch, crash.cpu_info) %} AMD {% endif %} {% endif %} {% if crash[column] %} {% if column == 'date' %} {{ crash[column] | human_readable_iso_date }} {% elif column == 'install_time' %} {{ crash[column] | timestamp_to_date }} {% else %} {{ crash[column] }} {% endif %} {% endif %}
{{ pagination(query, current_url, current_page) }}
{% else %}

No results were found.

{% endif %}