diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-05-10 15:47:24 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2017-05-10 15:49:27 +0200 |
commit | cd100f9c17a397578e28c4afa37f9c213f73620f (patch) | |
tree | fe0782f5f0fc6c76db173dcc16375a96241859c4 /reporting/functest/template/index-status-tmpl.html | |
parent | e89320ddafbf6a5557e226fdd428dbdfa025fbf0 (diff) |
Bug Fixes: remove Db name + path
as case have been renamed in testcases.yaml
no more need or translation name/Db name
Change-Id: I0656ec478369224d44d9c3cdf0c6426f140e4029
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'reporting/functest/template/index-status-tmpl.html')
-rw-r--r-- | reporting/functest/template/index-status-tmpl.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/reporting/functest/template/index-status-tmpl.html b/reporting/functest/template/index-status-tmpl.html index ebacfd1..cc4edaa 100644 --- a/reporting/functest/template/index-status-tmpl.html +++ b/reporting/functest/template/index-status-tmpl.html @@ -134,13 +134,13 @@ $(document).ready(function (){ <tr class="tr-weather-weather"> {% for test in items[scenario] -%} {% if test.getCriteria() > 2 -%} - <td><img src="../../../img/weather-clear.png"></td> + <td><img src="../../img/weather-clear.png"></td> {%- elif test.getCriteria() > 1 -%} - <td><img src="../../../img/weather-few-clouds.png"></td> + <td><img src="../../img/weather-few-clouds.png"></td> {%- elif test.getCriteria() > 0 -%} - <td><img src="../../../img/weather-overcast.png"></td> + <td><img src="../../img/weather-overcast.png"></td> {%- elif test.getCriteria() > -1 -%} - <td><img src="../../../img/weather-storm.png"></td> + <td><img src="../../img/weather-storm.png"></td> {%- endif %} {%- endfor %} </tr> |