diff options
author | Frederick Muriuki Muriithi | 2024-09-06 16:38:04 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-06 16:38:04 -0500 |
commit | b74911f15a9f9a9ff3cca0e25fcd761bf41652b5 (patch) | |
tree | 9f17ca43a8da7e7bcaf7a2990f32e5e792d629be /uploader/templates/populations/view-population.html | |
parent | e13a694540ee65f401652d9ebdb5f845c15fb97e (diff) | |
download | gn-uploader-b74911f15a9f9a9ff3cca0e25fcd761bf41652b5.tar.gz |
Add more fields when creating a population
Add more of the missing fields when creating a population, to ensure
that the created population works as expected.
Diffstat (limited to 'uploader/templates/populations/view-population.html')
-rw-r--r-- | uploader/templates/populations/view-population.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/uploader/templates/populations/view-population.html b/uploader/templates/populations/view-population.html index 7eb1362..3ae76ab 100644 --- a/uploader/templates/populations/view-population.html +++ b/uploader/templates/populations/view-population.html @@ -29,12 +29,25 @@ <dt>FullName</dt> <dd>{{population.FullName}}</dd> + <dt>Code</dt> + <dd>{{population.InbredSetCode}}</dd> + + <dt>Genetic Type</dt> + <dd>{{population.GeneticType}}</dd> + + <dt>Family</dt> + <dd>{{population.Family}}</dd> + <dt>Description</dt> <dd><pre>{{population.Description or "-"}}</pre></dd> </dl> </div> <div class="row"> + … maybe provide a way to organise populations in the same family here … +</div> + +<div class="row"> <h3>Actions</h3> <p> |