{%- macro render_result_asn(geoip_result) %}
| {{ _("AS number") }}: | {{ geoip_result['asn']['asn'] }} |
|---|---|
| {{ _("Organization") }}: | {{ geoip_result['asn']['org'] }} |
| {{ _("Continent") }}: | {{ geoip_result['city']['cnt_name'] }} ({{ geoip_result['city']['cnt_code'] | upper }}) |
|---|---|
| {{ _("Country") }}: | {{ geoip_result['city']['ctr_name'] }} ({{ geoip_result['city']['ctr_code'] | upper }}, {{ get_country_flag(geoip_result['city']['ctr_code']) }}) |
| {{ _("City") }}: | {{ geoip_result['city']['cty_name'] }} |
| {{ _("Timezone") }}: | {{ geoip_result['city']['timezone'] }} |
| {{ _("Coordinates") }}: | @{{ geoip_result['city']['latitude'] }},{{ geoip_result['city']['longitude'] }} |
{{ _('Search powered by GeoLite2 data created by MaxMind.') | safe }}
{%- endmacro %}