Updated Library view to show an icon if a record exists showing that the library...
[htsworkflow.git] / htsworkflow / frontend / templates / samples / library_index.html
index afae22b85ce1e5806c079ab6d270026f948d5671..c0a37e6a9438f4ce7a16becc87f86f6a44e979e4 100644 (file)
@@ -34,6 +34,7 @@
     <td>Species</td>
     <td>Library Name</td>
     <td>Total Lanes</td>
+    <td>HD</td>
     </tr>
   </thead>
   <tbody>
       <td><a href="/library/{{ lib.library_id }}">{{ lib.species_name }}</a></td>
       <td><a href="/library/{{ lib.library_id }}">{{ lib.library_name }}</a></td>
       <td>{{ lib.lanes_run }}</td>
+      {% if lib.is_archived %}
+        <td><img src="/static/img/hdd_unmount.png" alt="Archived" /></td>
+      {% else %}
+        <td></td>
+      {% endif %}
     </tr>
     {% endfor %}
   </tbody>