{% extends "default/_layout.html" %} {% block title %}Статистика{% endblock %} {% block content %}

Статистика

{% if g.errors['total'] > 0 %}
{% for error in g.errors['items'] %}
{{ error }}
{% endfor %}
{% else %}
Трафик за последие 30 дней:
Запросов Трафик Цена Гб
{{ stats_string['requests'] }} {{ stats_string['traffic'] }} Гб {{ stats_string['cost'] }}

Данные по странам

{% if traffic_by_country|length == 0 %} {% else %} {% for country in traffic_by_country %} {% set flag_file="images/country/shiny/32/" + country|upper + ".png" %} {% endfor %} {% endif %}
Страна Трафик
Нет данных
{{ country|lower }} {{ traffic_by_country[country] }} Гб
{#
#} {#
#} {#
#} {#
#} {% endif %}
{% endblock %}