about summary refs log tree commit diff
path: root/uploader/templates
diff options
context:
space:
mode:
Diffstat (limited to 'uploader/templates')
-rw-r--r--uploader/templates/phenotypes/view-phenotype.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/uploader/templates/phenotypes/view-phenotype.html b/uploader/templates/phenotypes/view-phenotype.html
index 077a301..5ed45b7 100644
--- a/uploader/templates/phenotypes/view-phenotype.html
+++ b/uploader/templates/phenotypes/view-phenotype.html
@@ -90,8 +90,10 @@
           <th>#</th>
           <th>Sample</th>
           <th>Value</th>
-          <th>SE</th>
+          {%if has_se%}
+          <th>SE: {{has_se}}</th>
           <th>N</th>
+          {%endif%}
         </tr>
       </thead>
 
@@ -101,9 +103,10 @@
           <td>{{loop.index}}</td>
           <td>{{item.StrainName}}</td>
           <td>{{item.value}}</td>
-          <td>{{item.Symbol or "-"}}</td>
+          {%if has_se%}
           <td>{{item.error or "-"}}</td>
           <td>{{item.count or "-"}}</td>
+          {%endif%}
         </tr>
         {%endfor%}
       </tbody>