publik-base-theme/templates/variants/toodego/combo/cells/recherche/map_cell.html

50 lines
1.5 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.

{% extends "maps/map_cell.html" %}
{% load gnm %}
{% block map-attributes %}
{{ block.super }}
{% if cell.page.slug == 'autour-de-moi' %}data-query-string="distance=1000&lat={{init_lat}}&lng={{init_lng}}"{% endif %}
{% endblock %}
{% block cell-content %}
<div id="mapsearch">
<form>
<input type="search" name="q"
{% if cell.page.slug == 'autour-de-moi' %}
placeholder="ex : Lieu, communes, services, nom d'un établissement"
title="ex : Lieu, communes, services, nom d'un établissement"
{% else %}
placeholder="ex : nom d'un établissement, commune"
title="ex : nom d'un établissement, commune"
{%endif %}
><button class="search-button">Rechercher</button>
</form>
{% if cell.page.slug == 'autour-de-moi' %}
<div class="suggestions">
<a href="/services/mes-deplacements/aires-de-covoiturage/">Aire de covoiturage</a>
<span>Bibliothèque</span>
<a href="/services/ma-vie-de-quartier/decheteries-et-donneries/">Déchèterie</a>
<a href="/services/mes-deplacements/horaires-a-larret/">Horaires à l'arrêt</a>
<span>Mairie</span>
<span>Maison de la Métropole</span>
<span>Piscine</span>
<span>Station de taxi</span>
<span>Vélo'v</span>
</div>
{% endif %}
</div>
<div class="loader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="5" stroke-miterlimit="10"/>
</svg>
</div>
{{ block.super }}
{% get_collectivity_slugs as slugs %}
{{ slugs|json_script:"collectivity-slugs" }}
{% endblock %}