Mark library & flowcell as a type in RDF.
[htsworkflow.git] / htsworkflow / frontend / templates / experiments / flowcell_header.html
1   <div class="flowcell_identity">
2   <h2>About this Flowcell</h2>
3   <b>Flowcell</b>:
4     <a href="{{flowcell.get_absolute_url}}" property="libns:flowcell_id">{{flowcell.flowcell_id}}</a>{% if user.is_staff %}<a href="{{flowcell.get_admin_url}}"><img class="icon_button" src="/media/img/admin/icon_changelink.gif" alt="Edit"/></a>{% endif%}
5   <br property="rdf:type" content="libns:illumina_flowcell"/>
6   <b>Run Date</b>:
7     <span property="libns:date" content="{{flowcell.run_date|date:'Y-m-d\TH:i:s'}}" datatype="xsd:dateTime">{{ flowcell.run_date }}</span><br/>
8   <b>Type</b>:
9     <span property="libns:flowcell_type">{{flowcell.flowcell_type}}</span><br/>
10   <b>Read Length</b>:
11     <span property="libns:read_length" datatype="xsd:decimal">{{flowcell.read_length}}</span><br/>
12   <b>Control Lane</b>:
13     <span property="libns:control_lane">{{flowcell.control_lane}}</span><br/>
14
15   <b>Notes</b>:
16     <pre property="libns:flowcell_notes">{{flowcell.notes}}</pre>
17   </div>