{% from "macros/pagination.html" import pagination %}
{{ pagination(report_list, current_url, current_page, '#reports') }} {% for column in columns %} {% endfor %} {% for crash in report_list.hits %} {% for column in columns %} {% if column.value == 'date_processed' %} {% elif column.value == 'duplicate_of' %} {% endif %} {% elif column.value == 'crash_type' %} {% elif column.value == 'os_and_version' %} {% elif column.value == 'comments' %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ column.label }}
{{ crash.date_processed }}
{% if crash.duplicate_of %} dup
{{ crash.os_name }} {{ crash.os_version }} {% if request.user.is_active %} {{ crash.user_comments }} {% else %} {% if crash.user_comments %} {{ crash.user_comments | scrub_pii }} {% endif %} {% endif %} {{ crash[column.value] }}
{{ pagination(report_list, current_url, current_page, '#reports') }}