diff options
author | Frederick Muriuki Muriithi | 2025-02-18 15:43:29 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-02-18 15:43:29 -0600 |
commit | c403183a504769af6b3aa25b5438e945efbc91ff (patch) | |
tree | fd63715a4d582869c4db7734c220ed144df29122 /uploader | |
parent | 5ba86e3c73441d3cec002d944c0a871cd682eed0 (diff) | |
download | gn-uploader-c403183a504769af6b3aa25b5438e945efbc91ff.tar.gz |
Improve copy to clarify what the UI is meant for.
Diffstat (limited to 'uploader')
-rw-r--r-- | uploader/templates/phenotypes/create-dataset.html | 6 | ||||
-rw-r--r-- | uploader/templates/phenotypes/list-datasets.html | 9 |
2 files changed, 10 insertions, 5 deletions
diff --git a/uploader/templates/phenotypes/create-dataset.html b/uploader/templates/phenotypes/create-dataset.html index 93de92f..8e45491 100644 --- a/uploader/templates/phenotypes/create-dataset.html +++ b/uploader/templates/phenotypes/create-dataset.html @@ -74,8 +74,10 @@ {%endif%} required="required" /> <small class="form-text text-muted"> - <p>A longer, descriptive name for the dataset — useful for humans. - </p></small> + <p>A longer, descriptive name for the dataset. The name is meant for use + by humans, and therefore, it should be clear what the dataset contains + from the name.</p> + </small> </div> <div class="form-group"> diff --git a/uploader/templates/phenotypes/list-datasets.html b/uploader/templates/phenotypes/list-datasets.html index 2eaf43a..2cf2c7f 100644 --- a/uploader/templates/phenotypes/list-datasets.html +++ b/uploader/templates/phenotypes/list-datasets.html @@ -48,9 +48,12 @@ </tbody> </table> {%else%} - <p class="text-warning"> - <span class="glyphicon glyphicon-exclamation-sign"></span> - There is no dataset for this population!</p> + <p>Phenotypes need to go into a dataset. We do not currently have a dataset + for species <strong>'{{species["FullName"]}} ({{species["Name"]}})'</strong> + phenotypes.</p> + + <p>Do, please, create a new dataset by clicking on the "Create Dataset" button + below and following the prompts/instructions.</p> <p><a href="{{url_for('species.populations.phenotypes.create_dataset', species_id=species.SpeciesId, population_id=population.Id)}}" |