publik-base-theme/templates/combo/json/rsa-contacts.html

23 lines
1.2 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% if not json.err and json.data %}
<h2>Mes contacts</h2>
<div>
<h3>Territoire dAction Sociale{% if json.data.dossier.adresse.lieu.localisation.nomCirconscription %} {{ json.data.dossier.adresse.lieu.localisation.nomCirconscription }}{% endif %}</h3>
{% if json.data.dossier.adresse.lieu.localisation.nomCirconscription %}
{% with circonscription=json.data.dossier.adresse.lieu.localisation.circonscription %}
<ul>
<li>Adresse : <strong>{{ circonscription.adresse.numero|default:"" }} {{ circonscription.adresse.lieu.nom|default:"" }} {{ circonscription.adresse.lieu.commune.codePostal|default:"" }} {{ circonscription.adresse.lieu.commune.nom|default:"" }}</strong></li>
{% if circonscription.stdCirconscription %}<li>Téléphone : <strong>{{ circonscription.stdCirconscription|phonenumber_fr }}</strong></li>{% endif %}
{% if circonscription.emailCirconscription %}<li>Email : <strong>{{ circonscription.emailCirconscription }}</strong></li>{% endif %}
</ul>
{% endwith %}
{% else %}
<div class="pk-information"><p>Information non disponible.</p></div>
{% endif %}
<h3>Mon interlocuteur</h3>
{% include "./rsa-interlocuteur.html" %}
</div>
{% endif %}