소스 검색

Added missing quotes in openlayers.html template.

Aleksey 8 년 전
부모
커밋
a247c1d789
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      django/contrib/gis/templates/gis/openlayers.html

+ 2 - 2
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>