diff options
Diffstat (limited to 'templates/releng/result_list.html')
-rw-r--r-- | templates/releng/result_list.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/templates/releng/result_list.html b/templates/releng/result_list.html index 207a8ba3..281df083 100644 --- a/templates/releng/result_list.html +++ b/templates/releng/result_list.html @@ -1,12 +1,11 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% load url from future %} {% block content %} <div class="box"> <h2>Results for: {% if option %}{{ option.verbose_name|title }}: {{ value }}{% endif %} - {{ iso_name|default:"" }} + {% if iso_name %}{{ iso_name|default:"" }}{% endif %} </h2> <p><a href="{% url 'releng-test-overview' %}">Go back to testing results</a></p> @@ -34,8 +33,10 @@ </tbody> </table> </div> -{% load cdn %}{% jquery %} -<script type="text/javascript" src="{% static "jquery.tablesorter.min.js" %}"></script> +{% endblock %} + +{% block script_block %} +{% load cdn %}{% jquery %}{% jquery_tablesorter %} <script type="text/javascript" src="{% static "archweb.js" %}"></script> <script type="text/javascript"> $(document).ready(function() { |