{% extends "crashstats_base.html" %} {% block page_title %} Top Changing Top Crashers for {{ product }} {% endblock %} {% block content %}

Top Changers for {{ product }} {{ versions|join(', ') }}

{% if topchangers %} {% for result in topchangers|dictsort|reverse %} {% with changer = result[1][0] %} {% endwith %} {% endfor %}
Change Rank Signature
{% if changer.changeInRank <= -5 %}
{{ changer.changeInRank }}
{% elif changer.changeInRank >= 5 %}
{{ changer.changeInRank }}
{% else %}
{{ changer.changeInRank }}
{% endif %}
{{ changer.currentRank + 1 }} {{ changer.signature }}
{% else %}

There were no top changers that matched the criteria you specified.

{% endif %}

{% endblock %}