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/samples | |
parent | 879fbc4d6086860e2de76a4f74509a1bb8642af5 (diff) | |
download | gn-uploader-7e54ea61c374e15df31c41c1ca87a001acd85242.tar.gz |
UI Improvements: Enumerate data in tables.
Diffstat (limited to 'uploader/templates/samples')
-rw-r--r-- | uploader/templates/samples/list-samples.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/uploader/templates/samples/list-samples.html b/uploader/templates/samples/list-samples.html index f82d72e..13e5cec 100644 --- a/uploader/templates/samples/list-samples.html +++ b/uploader/templates/samples/list-samples.html @@ -73,6 +73,7 @@ <table class="table"> <thead> <tr> + <th>#</th> <th>Name</th> <th>Auxilliary Name</th> <th>Symbol</th> @@ -83,6 +84,7 @@ <tbody> {%for sample in samples%} <tr> + <td>{{sample.sequence_number}}</td> <td>{{sample.Name}}</td> <td>{{sample.Name2}}</td> <td>{{sample.Symbol or "-"}}</td> |