Django 2.2
[wolnelektury.git] / src / catalogue / templates / catalogue / snippets / license_icon.html
index 732e3bf..c9e212e 100755 (executable)
@@ -1,10 +1,9 @@
 {% load i18n %}
-{% load static from staticfiles %}
+{% load static from static %}
 
 {% if license_url %}
 <a class="license-icon" href="{{ license_url }}"
-    title="{% trans "Free license" %}: {{ license_description }}">
-    <img src="{% static icon %}"
-        alt="{% trans "Free license" %}: {{ license_description }}" />
+   title="{% trans "Free license" %}: {{ license_description }}">
+  <img src="{% static icon %}" alt="{% trans "Free license" %}: {{ license_description }}"/>
 </a>
 {% endif %}