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

59 lines
2.8 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.

{% if json_allocataires.data and json_allocataires.data.soumisDD != "Soumis à droit et devoir" or json_allocataires.data and not json_allocataires.data.oriente %}
<!-- NSDD ou SDD NO -->
{% with cli=json.data.dossier.adresse.lieu.localisation.cli %}
<ul>
{% if cli.lcCli %}<li><strong>{{ cli.lcCli }}</strong></li>{% endif %}
{% if cli.telephoneCli %}<li>Téléphone : <strong>{{ cli.telephoneCli|phonenumber_fr }}</strong></li>{% endif %}
{% if cli.emailCli %}<li>Email : <strong>{{ cli.emailCli }}</strong></li>{% endif %}
<ul>
{% endwith %}
{% else %}
{% if json_allocataires.data.soumisDD == "Soumis à droit et devoir" %}
<!-- SDD -->
{% if json_evaluations.data.typeorientation == 'Social' %}
<!-- SDD OS -->
{% if json_evaluations.data.corrOrientationChoix == 'CONSEIL_DEPARTEMENTAL' %}
<!-- SDD OS Interne -->
<ul>
<li><strong>{{ json_evaluations.data.corrOrientIntervenantSocial|default:"" }}{% if json_evaluations.data.corrOrientStructureAccompagnement %} - {{ json_evaluations.data.corrOrientStructureAccompagnement }}{% endif %}</strong></li>
{% if json_evaluations.data.rsa_links.corrOrient.content.coordonnees.numeroTelephone %}<li>Téléphone : <strong>{{ json_evaluations.data.rsa_links.corrOrient.content.coordonnees.numeroTelephone|phonenumber_fr }}</strong></li>{% endif %}
{% if json_evaluations.data.rsa_links.corrOrientStructAcc.content.email %}<li>Email : <strong>{{ json_evaluations.data.rsa_links.corrOrientStructAcc.content.email }}</strong></li>{% endif %}
<ul>
{% else %}
<!-- SDD OS Externe -->
<ul>
{% if json_evaluations.data.refOrientIntervenantSocial %}<li><strong>{{ json_evaluations.data.refOrientIntervenantSocial }}</strong></li>{% endif %}
{% if json_evaluations.data.rsa_links.refOrient.content.coordonnees.numeroTelephone %}<li>Téléphone : <strong>{{ json_evaluations.data.rsa_links.refOrient.content.coordonnees.numeroTelephone|phonenumber_fr }}</strong></li>{% endif %}
{% if json_evaluations.data.rsa_links.refOrient.content.coordonnees.courriel %}<li>Email : <strong>{{ json_evaluations.data.rsa_links.refOrient.content.coordonnees.courriel }}</strong></li>{% endif %}
<ul>
{% endif %}
{% else %}
<!-- SDD OE-->
{% with cli=json.data.dossier.adresse.lieu.localisation.cli %}
<ul>
{% if cli.lcCli %}<li><strong>{{ cli.lcCli }}</strong></li>{% endif %}
{% if cli.telecopieCli %}<li>Téléphone : <strong>{{ cli.telecopieCli|phonenumber_fr }}</strong></li>{% endif %}
{% if cli.emailCli %}<li>Email : <strong>{{ cli.emailCli }}</strong></li>{% endif %}
<ul>
{% endwith %}
{% endif %}
{% else %}
<div class="pk-information"><p>Information non disponible.</p></div>
{% endif %}
{% endif %}