summaryrefslogtreecommitdiff
path: root/chimere/templates/upload_file.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2012-02-15 19:57:33 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2012-02-15 19:57:33 +0100
commit053c3a9a421a980a2af2f8e60df2d0c106b959e7 (patch)
tree7eafee9ba4a8db2c5e470f599939cab18f4c22d7 /chimere/templates/upload_file.html
parentfbfae775970eb0b29c3ac3f79d5bcd7c9acb12fb (diff)
downloadChimère-053c3a9a421a980a2af2f8e60df2d0c106b959e7.tar.bz2
Chimère-053c3a9a421a980a2af2f8e60df2d0c106b959e7.zip
Use staticfiles (refs #315)
Diffstat (limited to 'chimere/templates/upload_file.html')
-rw-r--r--chimere/templates/upload_file.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/chimere/templates/upload_file.html b/chimere/templates/upload_file.html
index 0ef276d..d08f723 100644
--- a/chimere/templates/upload_file.html
+++ b/chimere/templates/upload_file.html
@@ -5,12 +5,12 @@
<head>
<title>{% block title %}Chimère{% endblock %}</title>
<script type="text/javascript"><!--
- var media_path = '{{media_path}}';
+ var media_path = '{{STATIC_URL}}';
var extra_url = "{{extra_url}}";
// --></script>
{% block extra_head %}{{extra_head|safe}}{% endblock %}
- <link rel="stylesheet" href="{{media_path}}styles.css" />
- {%if css_area%}<link rel="stylesheet" href="{{media_path}}{{css_area}}" />{%endif%}
+ <link rel="stylesheet" href="{{STATIC_URL}}styles.css" />
+ {%if css_area%}<link rel="stylesheet" href="{{STATIC_URL}}{{css_area}}" />{%endif%}
<script type="text/javascript" src="{{JQUERY_URL}}"></script>
{% block head %}{% endblock %}
</head>