passerelle/passerelle/apps/base_adresse/templates/base_adresse/baseadresse_detail.html

23 lines
649 B
HTML

{% extends "passerelle/manage/service_view.html" %}
{% load i18n passerelle %}
{% block description %}
{{ block.super }}
{% if object.get_zipcodes and not object.get_streets_queryset.exists %}
<div class="infonotice">
{% trans "Street data is not available yet, it should soon be downloaded." %}
</div>
{% endif %}
{% if object.api_geo_url and not object.cities_exist %}
<div class="infonotice">
{% trans "API Géo data is not available yet, it should soon be downloaded." %}
</div>
{% endif %}
{% endblock %}
{% block security %}
<p>
{% trans 'Accessing the listings is open.' %}
</p>
{% endblock %}