summaryrefslogtreecommitdiffstats
path: root/templates/todolists
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-03-24 18:37:19 +0100
committerDan McGee <dan@archlinux.org>2012-03-24 18:37:19 +0100
commit3e2e4d4ef8910351910d633d17f8b4e9c0ea4c74 (patch)
treec86627fe731dfff5177386d126d3bb7da2ce0444 /templates/todolists
parent024fd1b2843d2abd0094faedfbc49e1d1a21edd0 (diff)
downloadarchweb-3e2e4d4ef8910351910d633d17f8b4e9c0ea4c74.tar.gz
archweb-3e2e4d4ef8910351910d633d17f8b4e9c0ea4c74.tar.xz
Convert STATIC_URL usage to {% static %} template tag
This is a lot more flexible and will allow more than just simple prefixing of the static file resources. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/todolists')
-rw-r--r--templates/todolists/list.html5
-rw-r--r--templates/todolists/public_list.html5
-rw-r--r--templates/todolists/view.html5
3 files changed, 9 insertions, 6 deletions
diff --git a/templates/todolists/list.html b/templates/todolists/list.html
index b829a12..88df4c8 100644
--- a/templates/todolists/list.html
+++ b/templates/todolists/list.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load static from staticfiles %}
{% block title %}Arch Linux - Todo Lists{% endblock %}
@@ -43,8 +44,8 @@
</table>
</div>
{% load cdn %}{% jquery %}
-<script type="text/javascript" src="{{ STATIC_URL }}jquery.tablesorter.min.js"></script>
-<script type="text/javascript" src="{{ STATIC_URL }}archweb.js"></script>
+<script type="text/javascript" src="{% static "jquery.tablesorter.min.js" %}"></script>
+<script type="text/javascript" src="{% static "archweb.js" %}"></script>
<script type="text/javascript">
$(document).ready(function() {
// I'm not sure why it didn't autodetect digit, but it has to be explicit
diff --git a/templates/todolists/public_list.html b/templates/todolists/public_list.html
index b1d0453..c3142da 100644
--- a/templates/todolists/public_list.html
+++ b/templates/todolists/public_list.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load static from staticfiles %}
{% load package_extras %}
{% block title %}Arch Linux - Todo Lists{% endblock %}
@@ -65,8 +66,8 @@
</div>
{% endif %}
{% load cdn %}{% jquery %}
-<script type="text/javascript" src="{{ STATIC_URL }}jquery.tablesorter.min.js"></script>
-<script type="text/javascript" src="{{ STATIC_URL }}archweb.js"></script>
+<script type="text/javascript" src="{% static "jquery.tablesorter.min.js" %}"></script>
+<script type="text/javascript" src="{% static "archweb.js" %}"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".results").tablesorter({widgets: ['zebra'], sortList: [[0,0], [1,0]]});
diff --git a/templates/todolists/view.html b/templates/todolists/view.html
index 2ed7b78..02bbfd4 100644
--- a/templates/todolists/view.html
+++ b/templates/todolists/view.html
@@ -1,4 +1,5 @@
{% extends "base.html" %}
+{% load static from staticfiles %}
{% load package_extras %}
{% block title %}Arch Linux - Todo: {{ list.name }}{% endblock %}
@@ -70,8 +71,8 @@
</table>
</div>
{% load cdn %}{% jquery %}
-<script type="text/javascript" src="{{ STATIC_URL }}jquery.tablesorter.min.js"></script>
-<script type="text/javascript" src="{{ STATIC_URL }}archweb.js"></script>
+<script type="text/javascript" src="{% static "jquery.tablesorter.min.js" %}"></script>
+<script type="text/javascript" src="{% static "archweb.js" %}"></script>
<script type="text/javascript">
$(document).ready(function() {
$('a.status-link').click(todolist_flag);