{% extends "dashboard.html" %} {% block content %}
{% set base_flags_url = url_for('static', filename='img/flags') %}

Loading reports...

{% set ns = namespace(countries=[]) %} {% for report in reports %} {% if report["country"] not in ns.countries %} {% set ns.countries = ns.countries + [report["country"]] %} {% endif %} {% endfor %} TZ:
Date IP Address Country Method URL Status Code User-Agent Reason Server name Data
{{ report["date"] }} {{ report["ip"] }}
 -  {% if report['country'] == "local" %} N/A {% else %} {{ report["country"] }} {% endif %}
{{ report["method"] }} {{ report["url"] }} {{ report["status"] }} {{ report["user_agent"] }} {{ report["reason"] }} {{ report["server_name"] }} {{ report["data"] }}
{% endblock %}