From 635373e899ad830576946bd069200b919004a157 Mon Sep 17 00:00:00 2001 From: Plamen Nedkov Date: Sat, 27 Jan 2024 18:22:17 -0600 Subject: [PATCH] Print the region and the location on the web page --- ipask/templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipask/templates/index.html b/ipask/templates/index.html index d75f0fb..706be98 100644 --- a/ipask/templates/index.html +++ b/ipask/templates/index.html @@ -29,10 +29,10 @@ {{ client_info.xff }} {% endif %} - {% if client_info.city and client_info.country %} + {% if client_info.city and client_info.country and client_info.region and client_info.location %} curl {{ client_info.server_host }}/city
curl {{ client_info.server_host }}/country - {{ client_info.city }}, {{ client_info.country }} + {{ client_info.city }}, {{ client_info.region }}, {{ client_info.country }} ({{ client_info.location }}) {% endif %}