diff options
author | zsloan | 2020-09-29 14:42:33 -0500 |
---|---|---|
committer | zsloan | 2020-09-29 14:42:33 -0500 |
commit | 2637872ed32be6223eb464a76370a4e38850b5cd (patch) | |
tree | 39b7bac05da0658a6a1ccb049a10317884ecd7ef | |
parent | 12a350c1185978602eaa91025c5ea5e7dd7bfbff (diff) | |
download | genenetwork2-2637872ed32be6223eb464a76370a4e38850b5cd.tar.gz |
Fixed issue where negative additive effect values weren't being
displayed in the "view collection" page
* wqflask/wqflask/templates/collections/view.html - Apparently the
correct way to check if a value can be cast to a float in Jinja2 is to
say "value != 0"; it previous said "value > 0" which exlcuded all
negative values
-rw-r--r-- | wqflask/wqflask/templates/collections/view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/collections/view.html b/wqflask/wqflask/templates/collections/view.html index dce814dd..13d45d62 100644 --- a/wqflask/wqflask/templates/collections/view.html +++ b/wqflask/wqflask/templates/collections/view.html @@ -144,7 +144,7 @@ <TD data-export="{{ this_trait.LRS_score_repr }}" align="right">N/A</TD> {% endif %} <TD data-export="{{ this_trait.LRS_location_repr }}">{{ this_trait.LRS_location_repr }}</TD> - {% if this_trait.additive|float > 0 %} + {% if this_trait.additive|float != 0 %} <TD data-export="{{ this_trait.additive }}" align="right">{{ '%0.3f' % this_trait.additive|float }}</TD> {% else %} <TD data-export="{{ this_trait.additive }}" align="right">N/A</TD> |