diff options
Diffstat (limited to 'templates/mirrors/mirrors.html')
-rw-r--r-- | templates/mirrors/mirrors.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/mirrors/mirrors.html b/templates/mirrors/mirrors.html index 1207e81..3aff8ea 100644 --- a/templates/mirrors/mirrors.html +++ b/templates/mirrors/mirrors.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% load static from staticfiles %} {% block title %}Arch Linux - Mirror Overview{% endblock %} {% block content %} @@ -41,8 +42,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() { $(".results").tablesorter({widgets: ['zebra'], sortList: [[1,0], [2,0]]}); |