diff options
Diffstat (limited to 'templates/chimere/main_map.html')
-rw-r--r-- | templates/chimere/main_map.html | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/templates/chimere/main_map.html b/templates/chimere/main_map.html index c95f064..e37ad80 100644 --- a/templates/chimere/main_map.html +++ b/templates/chimere/main_map.html @@ -1,5 +1,5 @@ {% extends "chimere/base.html" %} -{% load i18n unlocalize_point chimere_tags %} +{% load i18n static unlocalize_point chimere_tags %} {% block extra_head %} {% head_jquery %} {% head_chimere %} @@ -8,7 +8,7 @@ {% head_form %} <script src="{{ STATIC_URL }}saclay/js/jquery.form.js?ver={{SACLAY_VERSION}}" type="text/javascript"></script> {% if has_search %} -<script src="{{ STATIC_URL }}chimere/js/search.js?ver={{VERSION}}" type="text/javascript"></script> +<script src="{{ STATIC_URL }}saclay/js/search.js?ver={{SACLAY_VERSION}}" type="text/javascript"></script> <script src="{{ STATIC_URL }}chimere/js/search-autocomplete.js?ver={{VERSION}}" type="text/javascript"></script>{% endif %} <script type='text/javascript' language='javascript'> @@ -72,8 +72,24 @@ <i class="fa fa-arrow-circle-left" aria-hidden="true"></i> <p>REVENIR AUX CATÉGORIES</p> </div> <div class='footer' id='footer-panel'> + <p>Disponible en téléchargement sur mobile</p> + <div id="store"> + <a href="https://play.google.com/store/apps/details?id=com.saclay.saclaycarteouverte" + target="_blank"> + <img src="{% static 'saclay/images/googleplay.svg' %}" + alt="Google play" class="store-image"/> + </a> + <a href="https://itunes.apple.com/fr/app/carto/id768621760?mt=8" + target="_blank"> + <img src="{% static 'saclay/images/appstore.svg' %}" + alt="App store" class="store-image"/> + </a> + </div> + <span id='action-project' class='dyn-page'> + <a href='/dyn/project/'>le projet</a> + </span> | {% if contact_email %}<a href='mailto:{{contact_email}}' id='contactus'>{% trans "contact" %}</a> | {% endif %} - <a href='{% url 'chimere:extra_page' '' 'legal' %}' id='page-legal' class='dyn-page'>{% trans "terms of service & credits" %}</a> + <a href="{% url 'chimere:extra_page' '' 'legal' %}" id='page-legal' class='dyn-page'>{% trans "terms of service & credits" %}</a> </div> </div> {% endblock %} @@ -111,6 +127,7 @@ {% if itinerary_form %}<div id='routing-button' class="action-button"> <i class="fa fa-map-signs" aria-hidden="true"></i></div>{% endif %} <div id='default-message'></div> + <a href="{% url 'chimere:extra_page' '' 'feedback' %}" id='page-feedback' class='dyn-page'>Suggestions</a> <script type="text/javascript"> <!-- $("#main-map").show(); |