aceb186dcadcc9ca4e946345fc2d0bd186455f08
[htsworkflow.git] / htsworkflow / frontend / templates / experiments / flowcell_lane_detail.html
1 {% extends "base_site.html" %}
2 {% load adminmedia humanize i18n %}
3 {% block extrahead %}
4     <!-- App Stuff -->
5     <link type="text/css" rel="stylesheet" href="/static/css/app.css" />
6     <script type="text/javascript" src="/static/js/jquery.min.js"></script>
7     
8     {% block additional_javascript %}
9     {% endblock %}
10 {% endblock %}
11
12 {% block content %}
13 <div id="lane_detail">
14   <h2>About this lane</h2>
15   <div rel="libns:flowcell" resource="{{flowcell.get_absolute_url}}">
16   <b>Flowcell</b>: 
17     <a href="{{flowcell.get_absolute_url}}">{{flowcell.flowcell_id}}</a><br/>
18   <b>Run Date</b>:
19     <span property="libns:date" content="{{flowcell.run_date|date:'Y-m-d\TH:i:s'}}" datatype="xsd:dateTime">{{ flowcell.run_date }}</span><br/>
20   <b>Type</b>: 
21     <span property="libns:flowcell_type">{{flowcell.flowcell_type}}</span><br/>
22   </div>
23   <b>Lane</b>: 
24     <span property="libns:lane_number" datatype="xsd:decimal">{{lane.lane_number}}</span><br/>
25   <b>pM</b>
26     <span property="libns:pM" datatype="xsd:decimal">{{ lane.pM }}</span><br/>
27   <b>Cluster Estimate</b>
28     <span property="libns:cluster_estimate" datatype="xsd:decimal"
29           content="{{lane.cluster_estimate}}">{{ lane.cluster_estimate|intcomma }}</span><br/>
30   <b>Lane Status</b>: 
31     <span property="libns:status">{{ lane.status }}</span><br/>
32   <b>Comment</b>: 
33     <span property="libns:comment">{{ lane.comment }}</span><br/>
34
35
36   <div rel="libns:library" resource="{{lib.get_absolute_url}}">
37   <h2>About the library</h2>
38   <b>Library ID</b>: 
39     <a href="{{lib.get_absolute_url}}" property="libns:library_id">{{ lib.id }}</a><br/>
40   <b>Name</b>: 
41     <span property="libns:name">{{ lib.library_name }}</span>
42   <br/>
43   <b>Species</b>: 
44     <a href="{{lib.library_species.get_absolute_url}}" rel="libns:species"><span property="libns:species_name">{{ lib.library_species.scientific_name }}</span></a>
45   <br/>
46   <b>Concentration</b>: 
47     <span property="libns:concentration">{{ lib.undiluted_concentration }} ng/µl</span>
48   <br/>
49   <b>Gel Cut Size</b>: 
50     <span property="libns:gel_cut">{{ lib.gel_cut_size }}</span>
51   <br/>
52   <b>Insert Size</b>: 
53     <span property="libns:insert_size">{{ lib.insert_size }}</span>
54   <br/>
55   <b>Background or Cell Line</b>:
56      <span property="libns:cell_line">{{ lib.cell_line }}</span>
57   <br/>
58   <b>Replicate</b>: 
59      <span property="libns:replicate">{{ lib.replicate }}</span>
60   <br/>
61   <b>Library Type</b>:
62      <span property="libns:library_type">{{ lib.library_type }}</span>
63   <br/>
64   <b>Experiment Type</b>:
65      <span property="libns:experiment_type">{{ lib.experiment_type }}</span>
66   <br/>
67   <b>Made By</b>: 
68     <span property="libns:made_by">{{ lib.made_by }}</span>
69   <br/>
70   <b>Creation Date</b>
71     <span property="libns:date" content="{{lib.creation_date|date:'Y-m-d'}}T00:00:00" datatype="xsd:dateTime">{{ lib.creation_date }}</span>
72   <br/> 
73   <b>Protocol Stopping Point</b>
74     <span property="libns:stopping_point">{{ lib.stopping_point_name }}</span>
75   <br/> 
76   <b>Affiliations</b>:
77   <ul>
78     {% for individual in lib.affiliations.all %}
79       <li property="libns:affliation" content="{{individual.name}}">
80         {{ individual.name }} ( {{ individual.contact }} )
81       </li>
82     {% endfor %}
83   </ul>
84   </div>
85 </div>  
86 {% endblock %}