Add in extra fields lorian asked for to library detail page
authorDiane Trout <diane@caltech.edu>
Sat, 29 May 2010 01:06:19 +0000 (01:06 +0000)
committerDiane Trout <diane@caltech.edu>
Sat, 29 May 2010 01:06:19 +0000 (01:06 +0000)
htsworkflow/frontend/templates/samples/library_detail.html

index b20581c150baf1f018fbc74ce18cd1365c71982f..ac100ee987153f0dbc59101b47fd06d34fd5e1b1 100644 (file)
@@ -53,6 +53,9 @@
   <b>Library ID</b>: {{ lib.id }}<br/>
   <b>Name</b>: {{ lib.library_name }}<br/>
   <b>Species</b>: {{ lib.library_species.scientific_name }}<br/>
+  <b>Concentration</b>: {{ lib.undiluted_concentration }} ng/µl<br/>
+  <b>Gel Cut Size</b>: {{ lib.avg_lib_size }}<br/>
+  <b>Made By</b>: {{ lib.made_by }} <br/>
   <b>Affiliations</b>:
   <ul>
     {% for individual in lib.affiliations.all %}
       {% endfor %}
     </tbody>
   </table>
+
+  <h2>Flowcell Notes</h2>
+  <table>
+    <thead>
+      <tr>
+       <td>Flowcell ID</td>
+       <td>Lane</td>
+       <td>Comment</td>
+    </thead>
+    <tbody>
+      {% for lane in lib.lane_set.all %}
+      <tr>
+       <td>{{ lane.flowcell.flowcell_id }}</td>
+       <td>{{ lane.lane_number }}</td>
+       <td>{{ lane.comment }}</td>
+       {% endfor %}
+    </tbody>
+  </table>
   <br/>
   <hr/>
   <h2>Count of multi-reads</h2>