diff options
author | Frederick Muriuki Muriithi | 2023-11-15 09:40:39 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-11-15 09:40:39 +0300 |
commit | 4d194050c34a9e9ef4560bf8061326330cecdd78 (patch) | |
tree | 1a909f3e23dac6a874e789abeb6753f3288a8c2e /qc_app/templates | |
parent | 75e47d9642b9b734f17daa038318e55b6eaae675 (diff) | |
download | gn-uploader-4d194050c34a9e9ef4560bf8061326330cecdd78.tar.gz |
UI: Only show GeneChipId and GeneChipName
Diffstat (limited to 'qc_app/templates')
-rw-r--r-- | qc_app/templates/select_platform.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/qc_app/templates/select_platform.html b/qc_app/templates/select_platform.html index dadf779..1d382e9 100644 --- a/qc_app/templates/select_platform.html +++ b/qc_app/templates/select_platform.html @@ -29,10 +29,8 @@ <thead> <tr> <th>Select</th> + <th>GeneChip ID</th> <th>GeneChip Name</th> - <th>Name</th> - <th>GeoPlatform</th> - <th>GO Tree Value</th> </tr> </thead> @@ -43,10 +41,8 @@ <input type="radio" name="genechipid" value="{{chip['GeneChipId']}}" required="required" /> </td> + <td>{{chip["GeneChipId"]}}</td> <td>{{chip["GeneChipName"]}}</td> - <td>{{chip["Name"]}}</td> - <td>{{chip["GeoPlatform"]}}</td> - <td>{{chip["GO_tree_value"]}}</td> </tr> {%else%} <tr> |