aboutsummaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
authorJ08nY2017-11-01 01:02:12 +0100
committerJ08nY2017-11-01 01:02:12 +0100
commita167d966e04186b8fcd0ccbfb6e6d55664f742e2 (patch)
tree41f0fa3ceb15f88753cafd21801dd04820310147 /_includes
parent4973f838e83c9231d8ea83e03055901f68c33a15 (diff)
downloadECTester-a167d966e04186b8fcd0ccbfb6e6d55664f742e2.tar.gz
ECTester-a167d966e04186b8fcd0ccbfb6e6d55664f742e2.tar.zst
ECTester-a167d966e04186b8fcd0ccbfb6e6d55664f742e2.zip
Add font-awesome.
Diffstat (limited to '_includes')
-rw-r--r--_includes/result_table.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/_includes/result_table.html b/_includes/result_table.html
index 1a0ba5e..ce5668d 100644
--- a/_includes/result_table.html
+++ b/_includes/result_table.html
@@ -13,7 +13,7 @@
<table>
<tr>
<th></th>
- <th>Description</th>
+ <th><i class="fa fa-file-text-o"></i> Description</th>
<th>Result</th>
<th>Cause</th>
</tr>
@@ -25,7 +25,11 @@
<td></td>
{% endif %}
<td>{{ test.desc }}</td>
- <td title="{{ test.result.cause }}">{{ test.result.value }}</td>
+ {% if test.result.value == "SUCCESS" %}
+ <td align="center" title="{{ test.result.cause }}"><i class="fa fa-check"></i></td>
+ {% else %}
+ <td align="center" title="{{ test.result.cause }}"><i class="fa fa-exclamation-triangle"></i></td>
+ {% endif %}
<td title="{% for sw in test.response.sws %}{{ sw }} {% endfor %}">{{ test.result.cause }}</td>
</tr>
{% if test.type == "compound" %}