diff options
| author | Aleksey <trash4@yandex.ru> | 2016-05-25 16:12:55 +0300 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-05-25 09:13:09 -0400 |
| commit | de5d70461f6830c618f5bc08254ecf14bb7484b3 (patch) | |
| tree | ea9ee75c3901501967763ce952e79343e8377373 /django | |
| parent | 734e21786c31286dce30e42b26e62dcd47fb2c21 (diff) | |
[1.10.x] Added missing quotes in openlayers.html template.
Backport of a247c1d78978e358543e306edb94f03bd9bf9413 from master
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/gis/templates/gis/openlayers.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/gis/templates/gis/openlayers.html b/django/contrib/gis/templates/gis/openlayers.html index 81f33ae4c1..7a25a21584 100644 --- a/django/contrib/gis/templates/gis/openlayers.html +++ b/django/contrib/gis/templates/gis/openlayers.html @@ -5,11 +5,11 @@ #{{ id }}_div_map { position: relative; vertical-align: top; float: {{ LANGUAGE_BIDI|yesno:"right,left" }}; } {% if not display_raw %}#{{ id }} { display: none; }{% endif %} .olControlEditingToolbar .olControlModifyFeatureItemActive { - background-image: url("{% static "admin/img/gis/move_vertex_on.svg" %}); + background-image: url("{% static "admin/img/gis/move_vertex_on.svg" %}"); background-repeat: no-repeat; } .olControlEditingToolbar .olControlModifyFeatureItemInactive { - background-image: url("{% static "admin/img/gis/move_vertex_off.svg" %}); + background-image: url("{% static "admin/img/gis/move_vertex_off.svg" %}"); background-repeat: no-repeat; }{% endblock %} </style> |
