summaryrefslogtreecommitdiff
path: root/plans/templates/_test_details.html
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@linaro.org>2018-02-21 12:41:02 +0000
committerMilosz Wasilewski <milosz.wasilewski@linaro.org>2018-02-21 20:06:34 +0000
commit68279b28c2ce1c4bf3b487fcbeb39753ed8bb706 (patch)
tree56d8e7f5515850e3ccef97761440693c5fcc6b9a /plans/templates/_test_details.html
parent68770de2bc1d7ef34bcddebe207450df09c44cf9 (diff)
plans: add more details to single page test plan renderer
Change-Id: Ib7d966e001e85a9caa5535086f0db626cfbf8285 Signed-off-by: Milosz Wasilewski <milosz.wasilewski@linaro.org>
Diffstat (limited to 'plans/templates/_test_details.html')
-rw-r--r--plans/templates/_test_details.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/plans/templates/_test_details.html b/plans/templates/_test_details.html
index cc41441..89ec5b8 100644
--- a/plans/templates/_test_details.html
+++ b/plans/templates/_test_details.html
@@ -9,6 +9,12 @@
{% for subkey,subvalue in value.items() %}
<strong>{{ subkey }}</strong>: {{ subvalue }}<br/>
{% endfor %}
+ {% elif value is iterable and value is not string %}
+ <ul>
+ {% for subitem in value %}
+ <li>{{ subitem }} </li>
+ {% endfor %}
+ </ul>
{% else %}
{{ value }}
{% endif %}