diff options
Diffstat (limited to 'ishtar_common/templates/gis/openlayers.html')
-rw-r--r-- | ishtar_common/templates/gis/openlayers.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ishtar_common/templates/gis/openlayers.html b/ishtar_common/templates/gis/openlayers.html index d6d0bf40c..1e0bb6cc7 100644 --- a/ishtar_common/templates/gis/openlayers.html +++ b/ishtar_common/templates/gis/openlayers.html @@ -1,4 +1,5 @@ {% load i18n l10n %} +{% localize off %} <style type="text/css">{% block map_css %}{% get_current_language_bidi as LANGUAGE_BIDI %} #{{ id }}_map { width: {{ map_width }}px; height: {{ map_height }}px; } #{{ id }}_map .aligned label { float: inherit; } @@ -31,7 +32,7 @@ id: '{{ id }}', map_id: '{{ id }}_map', map_options: map_options, - map_srid: {{ map_srid|unlocalize }}, + map_srid: {{ map_srid }}, name: '{{ name }}' }; {% endblock %} @@ -40,3 +41,4 @@ {% endblock %} </script> </div> +{% endlocalize %} |