about summary refs log tree commit diff
path: root/uploader/templates/populations/list-populations.html
diff options
context:
space:
mode:
Diffstat (limited to 'uploader/templates/populations/list-populations.html')
-rw-r--r--uploader/templates/populations/list-populations.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/uploader/templates/populations/list-populations.html b/uploader/templates/populations/list-populations.html
index c83c18c..a092e34 100644
--- a/uploader/templates/populations/list-populations.html
+++ b/uploader/templates/populations/list-populations.html
@@ -51,15 +51,17 @@
     <caption>Populations for {{species.FullName}}</caption>
     <thead>
       <tr>
+        <th></th>
         <th>Name</th>
         <th>Full Name</th>
-        <th>Description</th>
+        <th>Information</th>
       </tr>
     </thead>
 
     <tbody>
       {%for population in populations%}
       <tr>
+        <td>{{population["sequence_number"]}}</td>
         <td>
           <a href="{{url_for('species.populations.view_population',
                    species_id=species.SpeciesId,
@@ -69,7 +71,10 @@
           </a>
         </td>
         <td>{{population.FullName}}</td>
-        <td>{{population.Description}}</td>
+        <td><a href="https://info.genenetwork.org/species/source.php?SpeciesName={{species.Name}}&InbredSetName={{population.Name}}"
+               title="Link to detailed information on this population."
+               class="btn btn-info"
+               target="_blank">info</a></td>
       </tr>
       {%else%}
       <tr>