{% import "partials/icons.html" as icons %}
{% if geo_stats.entries.is_empty() %}

No data recorded yet.

{% else %}
{% for entry in geo_stats.entries %} {% if !entry.iso_code.is_empty() %} {% else %}
{{ entry.country_name }} {{ entry.count }}
{% endif %} {% endfor %}

{{ geo_stats.total_countries }} {% if geo_stats.total_countries == 1 %}country{% else %}countries{% endif %}

{% endif %}