Skip to content

Commit 3126887

Browse files
EmaCrzzGagaro
authored andcommitted
changes in staticfiles for django 1.11.14 (makinacorpus#225)
1 parent 059f171 commit 3126887

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

leaflet/templates/leaflet/_leaflet_map.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% load i18n %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33
{% if creatediv %}<div id="{{ name }}" class="leaflet-container-default"></div>{% endif %}
44
<script type="text/javascript">
55
(function () {

leaflet/templates/leaflet/admin/widget.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends "leaflet/widget.html" %}
22
{% load i18n %}
3-
{% load static from staticfiles %}
3+
{% load static %}
44

55

66
{% block map_css %}

leaflet/templates/leaflet/css.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load static from staticfiles %}
1+
{% load static %}
22
<link rel="stylesheet" href="{% static "leaflet/leaflet.css" %}" />
33
<!--[if lte IE 8]>
44
<link rel="stylesheet" href="{% static "leaflet/leaflet.ie.css" %}" />

leaflet/templates/leaflet/js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% load i18n %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33
{% if DEBUG %}
44
<script src="{% static "leaflet/leaflet-src.js" %}" type="text/javascript"></script>
55
{% else %}

leaflet/templates/leaflet/widget.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% load leaflet_tags l10n %}
2-
{% load static from staticfiles %}
2+
{% load static %}
33

44
<style type="text/css">{% block map_css %}
55
{% if map_width and map_height %}#{{ id_map }} { width: {{ map_width|unlocalize }}; height: {{ map_height|unlocalize }}; }{% endif %}

0 commit comments

Comments
 (0)