{% extends "base.html" %} {% block content %}

Receiver Ranking

{% for (receiver, ranking, current, today, yesterday) in ranking %} {% endfor %}
Rank Today Name Airport Distance [km] Senders Coverages Messages
{{ today }} {% if yesterday is none %}(new){% elif yesterday - today > 0 %}{{ yesterday - today }}{% elif yesterday - today < 0 %}{{ today - yesterday }}{% endif %} {% if current is not none %}{{ current }}{% else %}-{% endif %} {{ receiver|to_html_flag|safe }}{{ receiver|to_html_link|safe }} {{ receiver.airport|to_html_link|safe }} {% if ranking is not none %}{{ '%0.1f' | format(ranking.max_distance/1000.0) }}{% else %}-{% endif %} {% if ranking is not none %}{{ ranking.senders_count }}{% else %}-{% endif %} {% if ranking is not none %}{{ ranking.coverages_count }}{% else %}-{% endif %} {% if ranking is not none %}{{ ranking.messages_count }}{% else %}-{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}