{% extends 'layouts/layout_base.html' %} {% block body_content %}
Crashes
{% if isQuery %}
{% if error_message %}{% endif %}
{% csrf_token %}
{% if query_lines %} Bookmark this query {% endif %}
{% endif %}

{% if isSearch or isQuery %} Your search matched {{ crashlist.count }} entries in database. {% elif isAll %} Displaying all {{ crashlist.count }} entries in database. {% elif isWatch %} Displaying {{ crashlist.count }} new entries in bucket {{ bucket.pk }}.

{% csrf_token %}
{% else %} There are {{ crashlist.count }} unbucketed entries in the database. {% endif %}

{% if crashlist.paginator %} {% endif %}
{% for entry in crashlist %}{% endfor %}
ID Date Added Bucket Short Signature Crash Address Test Status Product Version Platform OS Tool
{{ entry.pk }} {{ entry.created|date:"r" }} {% if entry.bucket %} {{ entry.bucket.pk }} {% else %} {% if not entry.triagedOnce %} {% endif %} {% endif %} {{ entry.shortSignature|escape }} {{ entry.crashAddress|escape }} {% if entry.testcase %} Q{{entry.testcase.quality}} {{ entry.testcase.size }} {% if entry.testcase.isBinary %} (binary) {% endif %} {% else %} No test {% endif %} {{ entry.product.name|escape }} {{ entry.product.version|escape }} {{ entry.platform.name|escape }} {% if entry.os.name|escape == 'linux' %} Linux {% elif entry.os.name|escape == 'macosx' %} MacOS {% elif entry.os.name|escape == 'windows' %} Windows {% elif entry.os.name|escape == 'android' %} Android {% else %} {{ entry.os.name|escape }} {% endif %} {{ entry.tool.name|escape }}
{% endblock body_content %}