Fixed a minor layout bug.
[htsworkflow.git] / templates / container_summary.html
1 <h3>Container Summary</h3>
2
3 [ <a href="{{ container.get_absolute_url }}edit/">Edit</a>
4  | <a href="{{ container.get_absolute_url }}print/">Print Label</a> ]<br />
5 <br />
6
7 {% if msg %}
8 <div class="msg">
9     {{ msg }}
10 </div>
11 <br />
12 {% endif %}
13
14 <b>Name:</b> {{ container.name }}<br />
15 <b>Freezer:</b> <a href="{{ container.freezer.get_absolute_url }}">{{ container.freezer.name }}</a><br />
16 <br />
17 <b>uuid:</b> {{ container.uuid }}<br />
18 <br />
19 <b>Notes:</b><br />
20 <p>
21     {{ container.notes }}
22 </p>
23 <br />
24 <b>Allowed Sample Types:</b><br />
25 {{ container.sample_type.all|join:", " }}<br />
26 <br />
27 <b>Max Samples:</b> {{ container.max_items }}<br />
28 <b>Sample Count:</b> {{ container.sample_set.count }}<br />
29 <b>Space Available:</b> {{ container.space_available }}<br />
30 <br />
31
32 {{ rendered_samples }}
33
34