summaryrefslogtreecommitdiff
path: root/templates/news
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-12-12 19:15:24 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-12-12 19:15:24 -0500
commit4b700666e3405b8dc1891dd7e156b233333c7912 (patch)
tree81189b8d685e35f8b255e59ecb88fe1ab0a4a8bf /templates/news
parentbcf8f7438278880f092361814bbcd3207d11e937 (diff)
parent3e2e4d4ef8910351910d633d17f8b4e9c0ea4c74 (diff)
Merge commit '3e2e4d4' (Convert STATIC_URL usage to {% static %} template tag
Conflicts: templates/mirrors/mirrors.html templates/news/add.html templates/packages/differences.html templates/packages/groups.html templates/packages/stale_relations.html
Diffstat (limited to 'templates/news')
-rw-r--r--templates/news/add.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/news/add.html b/templates/news/add.html
index 9e95072b..433218a0 100644
--- a/templates/news/add.html
+++ b/templates/news/add.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load static from staticfiles %}
{% block title %}Parabola - News: {% if form.instance.id %}Edit{% else %}Add{% endif %} Article{% endblock %}
{% block content %}
@@ -33,7 +34,7 @@
<div id="news-preview-data" class="article-content"></div>
</div>
{% load cdn %}{% jquery %}
-<script type="text/javascript" src="{{ STATIC_URL }}archweb.js"></script>
+<script type="text/javascript" src="{% static "archweb.js" %}"></script>
<script type="text/javascript">
$(document).ready(enablePreview);
</script>