{% if location_error %}{{ location_error }}
{% endif %}
{% if geolocation.name %}{{ geolocation.name }}{% else %}{% trans "No location known" %}{% endif %}
{% if geolocation.accuracy %}
{% blocktrans with geolocation.accuracy|humanise_distance as accuracy %}within approx. {{ accuracy }}{% endblocktrans %}
{% endif %}
{% if geolocation_alternatives %}
{% trans "Did you mean…" %}
- {% for alt in geolocation_alternatives %}
- {% endfor %}
{% trans "Or search again:" %}
{% if geolocation.favourites %}
{% trans "Favourite Locations" %}
-
{% for id, favourite in geolocation.favourites.items %}
- {% endfor %}
{% trans "Location History" %}
-
{% for history in geolocation.history %}
- {% endfor %}