diff options
author | Frederick Muriuki Muriithi | 2024-09-17 12:46:31 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-17 12:47:58 -0500 |
commit | 7e54ea61c374e15df31c41c1ca87a001acd85242 (patch) | |
tree | 7fa48f39cbb99671dc31aa0033bb3e0cc11e2695 /uploader/templates/species/list-species.html | |
parent | 879fbc4d6086860e2de76a4f74509a1bb8642af5 (diff) | |
download | gn-uploader-7e54ea61c374e15df31c41c1ca87a001acd85242.tar.gz |
UI Improvements: Enumerate data in tables.
Diffstat (limited to 'uploader/templates/species/list-species.html')
-rw-r--r-- | uploader/templates/species/list-species.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/uploader/templates/species/list-species.html b/uploader/templates/species/list-species.html index d3dae7f..85c9d40 100644 --- a/uploader/templates/species/list-species.html +++ b/uploader/templates/species/list-species.html @@ -29,6 +29,7 @@ <caption>Available Species</caption> <thead> <tr> + <th>#</td> <th title="A common, layman's name for the species.">Common Name</th> <th title="The scientific name for the species">Organism Name</th> <th title="An identifier for the species in the NCBI taxonomy database"> @@ -42,6 +43,7 @@ <tbody> {%for species in allspecies%} <tr> + <td>{{species["sequence_number"]}}</td> <td>{{species["SpeciesName"]}}</td> <td> <a href="{{url_for('species.view_species', |