diff options
author | Dan McGee <dan@archlinux.org> | 2013-02-16 14:08:49 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-02-16 14:08:49 -0600 |
commit | 1b323ed9b2ac170cea4207ae75fd2849be8ff646 (patch) | |
tree | 961cef26d839a0678dba95c9969120c79a684195 /templates/releng | |
parent | 51a6669c3c8a44b6b9e7fd09f8253d3a36953eb6 (diff) |
Fix missing template variable
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/releng')
-rw-r--r-- | templates/releng/result_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/releng/result_list.html b/templates/releng/result_list.html index be5783b3..f6a825dc 100644 --- a/templates/releng/result_list.html +++ b/templates/releng/result_list.html @@ -6,7 +6,7 @@ <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> |