{% extends "base.html" %} {% block copyright %} {% endblock %} {% block title %}Top images{% endblock %} {% block extra_head %} {% if settings.DEBUG %} {% else %} {% endif %} {% endblock %} {% block body %}

Top images

Showing the top images by {% if data_type == 2 %} number of images served {% elif data_type == 4 %} number of originals served {% elif data_type == 5 %} bandwidth used {% elif data_type == 6 %} server processing time {% elif data_type == 7 %} slowest response time {% endif %} {% if days == 1 %} in the last day. {% else %} in the last {{ days }} days. {% endif %}

Switch to the top images by: {% if data_type != 2 %}  images served  {% endif %} {% if data_type != 4 %} {% if data_type != 2 %}|{% endif %}  originals served  {% endif %} {% if data_type != 5 %} |  bandwidth used  {% endif %} {% if data_type != 6 %} |  server processing time  {% endif %} {% if data_type != 7 %} |  slowest response  {% endif %}
in the last: {% if days != 1 %}  1 day  {% endif %} {% if days != 7 %} {% if days != 1 %}|{% endif %}  7 days  {% endif %} {% if days != 30 %} |  30 days  {% endif %}


{% set row_class = cycler('even', 'odd') %} {% if results %} {% for result in results %} {% endfor %} {% else %} {% endif %}
Rank {% if data_type == 2 %} Images served {% elif data_type == 4 %} Originals served {% elif data_type == 5 %} Bytes served {% elif data_type == 6 %} Time spent {% elif data_type == 7 %} Response time {% endif %} Image
{{ loop.index }} {% if data_type == 2 %} {{ result.views }} {% elif data_type == 4 %} {{ result.downloads }} {% elif data_type == 5 %} {{ result.bytes|filesizeformat }} {% elif data_type == 6 %} {{ '%.2f'|format(result.seconds) }} {% elif data_type == 7 %} {{ '%.2f'|format(result.max_seconds) }} {% endif %} {{ result.src }}
Currently there are no statistics

Statistics are updated once a minute
{% include "inc_preview_popup.html" %} {% endblock %}