publik-base-theme/templates/variants/toodego/combo/json/urgence-sanitaire.html

69 lines
3.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

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.

{% load combo gnm l10n assets %}
{% with urgence_sanitaire=json.features.0 is_place_page=page|is_place_page place_page=cell|place_page %}
{% get_tile_picture_size page as size %}
<div class="tile {{cell.key}} {% if is_place_page %}is-place{% endif %}" data-place-type="{{cell.key}}" data-tile-cache="300">
{% if is_place_page %}
{% placeholder "infos-pratiques" name="Infos pratiques" render=False %}
{% placeholder "galerie" name="Galerie photos" render=False %}
<div class="tile-picture" style="background-image: url({% asset_url place_page.picture "picture:banner:"|add:cell.key size=size crop="center" %})"></div>
{% else %}
<div class="tile-picture" style="background-image: url({% asset_url place_page.picture "picture:"|add:cell.key size=size crop="center" %})"></div>
{% endif %}
<div class="tile-head">
<div class="tile-title">
<h2 class="cell--title">{{urgence_sanitaire.properties.nom}}<br><span class="subtitle">{{urgence_sanitaire.properties.sscategorie}}</span></h2>
<span class="producer" style="background-image: url({% asset_url "logo:toodego" %})">Grand Lyon</span>
</div>
</div>
{% include "combo/dashboard_cell_icons.html" %}
{% if is_place_page %}
<div class="tile-content">
<div class="place-info">
{% include "combo/json/includes/share.html" with place=urgence_sanitaire url=cell|place_page_url %}
{% placeholder "infos-pratiques" %}
</div>
<div class="place-data">
{% include "combo/json/includes/adresse.html" with place=urgence_sanitaire %}
{% if urgence_sanitaire.properties.telephone %}
<div class="phone">
<h3>Téléphone</h3>
<div>{{urgence_sanitaire.properties.telephone}}</div>
<a class="action-call" href="tel:{{urgence_sanitaire.properties.telephone}}">Appeler</a>
</div>
{% endif %}
{% include "combo/json/includes/horaires.html" with place=urgence_sanitaire %}
</div> <!-- place-data -->
{% gnm_place_map urgence_sanitaire.geometry.coordinates.1 urgence_sanitaire.geometry.coordinates.0 %}
{% placeholder "galerie" %}
</div> <!-- tile-content -->
{% else %}
<div class="tile-content">
{% if urgence_sanitaire.properties.openinghoursspecification or urgence_sanitaire.properties.openinghours %}
{{urgence_sanitaire.properties|as_opening_hours_badge}}
{% else %}
<p>Pas dhoraire disponible.</p>
{% endif %}
<p>{{urgence_sanitaire.properties.address.streetAddress}}
· {{urgence_sanitaire.properties.address.addressLocality}}</p>
</div>
<div class="tile-actions">
{% localize off %}
<a class="action-goto" data-lat="{{urgence_sanitaire.geometry.coordinates.1}}" data-lng="{{urgence_sanitaire.geometry.coordinates.0}}" href="/m-y-rendre/?to={{cell.id}}">My rendre</a>
{% endlocalize %}
{% if urgence_sanitaire.properties.telephone %}
<a class="action-call" href="tel:{{urgence_sanitaire.properties.telephone}}">Appeler</a>
{% endif %}
<a class="action-more-info" href="{{cell|place_page_url}}">dinfos</a>
</div>
{% endif %}
</div>
{% endwith %}