]> git.parisson.com Git - telemeta.git/commitdiff
add static
authoryomguy <yomguy@parisson.com>
Mon, 17 Sep 2012 16:10:57 +0000 (18:10 +0200)
committeryomguy <yomguy@parisson.com>
Mon, 17 Sep 2012 16:10:57 +0000 (18:10 +0200)
telemeta/templates/telemeta/mediaitem_detail.html

index 0f4c166a3a5e5299749da3d9608c440e157dd662..db1fc7c2789095367ed085f5dd1004d611a70ae3 100644 (file)
@@ -175,10 +175,10 @@ Item : <a href="{% url telemeta-item-detail item.public_id %}">{{ item }}</a>
 
         {% if audio_export_enabled or perms.telemeta.can_download_all_items or user.is_superuser %}
         <div class="exporter">
-            <p><img src="{% url telemeta-images "download.png" %}" alt="download" style="vertical-align:middle" /> {% trans "Download:" %}
+            <p><img src="{{ STATIC_URL }}telemeta/images/download.png" alt="download" style="vertical-align:middle" /> {% trans "Download:" %}
                 {% for format in export_formats %}
                 <a href="{% url telemeta-item-export item.public_id,format.extension %}">
-                    <img src="images/{{ format.extension }}.png" style="vertical-align:middle" alt="{{ format.extension }}" /></a>
+                    <img src="{{ STATIC_URL }}telemeta/images/{{ format.extension }}.png" style="vertical-align:middle" alt="{{ format.extension }}" /></a>
                 {% endfor %}</p>
         </div>
         {% endif %}