aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/samples/list-samples.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-09-13 10:34:24 -0500
committerFrederick Muriuki Muriithi2024-09-13 10:45:49 -0500
commit2847c193832faf0e85a117ca3ac35e4afbcf8d12 (patch)
tree47ffe86f9eca3d0cc3d1ab5b6e64802cf7e499cd /uploader/templates/samples/list-samples.html
parent0ab59053fb5e63614b9ac5c94fbecff66a48b8c1 (diff)
downloadgn-uploader-2847c193832faf0e85a117ca3ac35e4afbcf8d12.tar.gz
Samples: provide more informative page content.
Diffstat (limited to 'uploader/templates/samples/list-samples.html')
-rw-r--r--uploader/templates/samples/list-samples.html89
1 files changed, 52 insertions, 37 deletions
diff --git a/uploader/templates/samples/list-samples.html b/uploader/templates/samples/list-samples.html
index 8f1bf16..f82d72e 100644
--- a/uploader/templates/samples/list-samples.html
+++ b/uploader/templates/samples/list-samples.html
@@ -24,42 +24,52 @@
<div class="row">
<p>
- Samples for population "{{population.FullName}}" from the
+ You selected the population "{{population.FullName}}" from the
"{{species.FullName}}" species.
</p>
+</div>
+
+{%if samples | length > 0%}
+<div class="row">
+ <p>
+ This population already has <strong>{{total_samples}}</strong>
+ samples/individuals entered. You can explore the list of samples in this
+ population in the table below.
+ </p>
+</div>
+
+<div class="row">
+ <div class="col-md-2">
+ {%if offset > 0:%}
+ <a href="{{url_for('species.populations.samples.list_samples',
+ species_id=species.SpeciesId,
+ population_id=population.Id,
+ from=offset-count,
+ count=count)}}">
+ <span class="glyphicon glyphicon-backward"></span>
+ Previous
+ </a>
+ {%endif%}
+ </div>
- {%if samples | length > 0%}
- <div class="row">
- <div class="col-md-2">
- {%if offset > 0:%}
- <a href="{{url_for('species.populations.samples.list_samples',
- species_id=species.SpeciesId,
- population_id=population.Id,
- from=offset-count,
- count=count)}}">
- <span class="glyphicon glyphicon-backward"></span>
- Previous
- </a>
- {%endif%}
- </div>
-
- <div class="col-md-8" style="text-align: center;">
- Samples {{offset}} &mdash; {{offset+(count if offset + count < total_samples else total_samples - offset)}} / {{total_samples}}
- </div>
-
- <div class="col-md-2">
- {%if offset + count < total_samples:%}
- <a href="{{url_for('species.populations.samples.list_samples',
- species_id=species.SpeciesId,
- population_id=population.Id,
- from=offset+count,
- count=count)}}">
- Next
- <span class="glyphicon glyphicon-forward"></span>
- </a>
- {%endif%}
- </div>
+ <div class="col-md-8" style="text-align: center;">
+ Samples {{offset}} &mdash; {{offset+(count if offset + count < total_samples else total_samples - offset)}} / {{total_samples}}
+ </div>
+
+ <div class="col-md-2">
+ {%if offset + count < total_samples:%}
+ <a href="{{url_for('species.populations.samples.list_samples',
+ species_id=species.SpeciesId,
+ population_id=population.Id,
+ from=offset+count,
+ count=count)}}">
+ Next
+ <span class="glyphicon glyphicon-forward"></span>
+ </a>
+ {%endif%}
</div>
+</div>
+<div class="row">
<table class="table">
<thead>
<tr>
@@ -90,10 +100,14 @@
delete all samples
</a>
</p>
- {%else%}
- <p class="text-danger">
- <span class="glyphicon glyphicon-exclamation-sign"></span>
- There are no samples for this population at this time.
+</div>
+
+{%else%}
+
+<div class="row">
+ <p>
+ There are no samples entered for this population. Do please go ahead and add
+ the samples for this population by clicking on the button below.
</p>
<p>
@@ -106,8 +120,9 @@
add samples
</a>
</p>
- {%endif%}
</div>
+{%endif%}
+
{%endblock%}
{%block sidebarcontents%}