diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-08-13 11:43:05 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-08-13 11:43:05 +0200 |
commit | 147e6762ea8625a5cacb389a2a1cf2ea92d668e0 (patch) | |
tree | 85538ce1d92e3f1e5f014663a1101bf68071c792 | |
parent | 5246253cb463ae1d6373354a148833e6b5a9d091 (diff) | |
download | Chimère - projet Saclay-147e6762ea8625a5cacb389a2a1cf2ea92d668e0.tar.bz2 Chimère - projet Saclay-147e6762ea8625a5cacb389a2a1cf2ea92d668e0.zip |
Afficher : en partir, y aller, etc sur la carte simple
-rw-r--r-- | templates/chimere/blocks/map_menu.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/chimere/blocks/map_menu.html b/templates/chimere/blocks/map_menu.html new file mode 100644 index 0000000..38fb4a8 --- /dev/null +++ b/templates/chimere/blocks/map_menu.html @@ -0,0 +1,14 @@ +{% load i18n %} +<div id='chimere_map_menu'> + <ul> + {% if routing %} + <li id='map_menu_from' class='routing_item'>{% trans "From" context "routing" %}</li> + <li id='map_menu_step' class='routing_item'>{% trans "Add a step" context "routing" %}</li> + <li id='map_menu_to' class='routing_item'>{% trans "To" context "routing" %}</li> + <li id='map_menu_clear' class='routing_item'>{% trans "Clear the itinerary" context "routing" %}</li> + {% endif%} + <li id='map_menu_zoomin'>{% trans "Zoom in" %}</li> + <li id='map_menu_zoomout'>{% trans "Zoom out" %}</li> + <li id='map_menu_center'>{% trans "Center the map here" %}</li> + </ul> +</div> |