{% 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 %} {% set value = read_crash_column(crash, column.key) %} {% if column.key == 'date_processed' %} {% elif column.key == 'duplicate_of' %} {% endif %} {% elif column.key == 'crash_type' %} {% elif column.key == 'os_and_version' %} {% elif column.key == 'comments' or column.key == '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 %} {{ value }} {% else %} {{ value | scrub_pii }} {% endif %} {{ value }}
{{ pagination(report_list, current_url, current_page, '#reports') }}