Bugs for {{ signature }}

{% if bugs | count == 0 %}

There are no bugs associated with this signature.

{% else %}
    {% for bug in bugs %} {% if bug.signature == signature %}
  • {{ show_bug_link(bug.bug_id) }}
  • {% endif %} {% endfor %}
{% endif %}
{% if bugs | count > 1 %}

Related Crash Signatures:

{% for bug in bugs %} {% if bug.signature != signature %}

Bugs for {{ bug.signature }}

  • {{ show_bug_link(bug.bug_id) }}
{% endif %} {% endfor %}
{% endif %}