{% extends 'layouts/layout_base.html' %} {% load extratags %} {% block title %}Find Signatures{% endblock title %} {% block body_content %}
Find Signature

{% if bucket %} A matching bucket was found for the requested crash entry. The entry has been assigned to bucket {{ bucket.pk }}. {% else %} {% if not buckets %} No similar buckets could be found.

{% endif %} Create a new bucket {% endif %}

{% if buckets %}
{% for entry in buckets %} {% endfor %}
ID Short Description Difference Count Foreign Matches External Bug
{{ entry.pk }} {{ entry.shortDescription|escape }} {{ entry.offCount }} (diff) {% if entry.foreignColor == "green" %} {{ entry.foreignMatchPercentage }} % {% endif %} {% if entry.foreignColor == "yellow" %} {{ entry.foreignMatchPercentage }} % {% endif %} {% if entry.foreignColor == "red" %} {{ entry.foreignMatchPercentage }} % {% endif %} - {% if entry.linkToOthers %} {{ entry.foreignMatchCount }} other buckets {% else %} {{ entry.foreignMatchCount }}{% if entry.foreignMatchLimitExceeded %}+{% endif %} other buckets {% endif %} {% if entry.bug %} {{ entry.bug.externalId }} {% endif %}
{% endif %}
{% endblock body_content %}