Added ability to print container labels.
[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 <b>Name:</b> {{ container.name }}<br />
8 <b>Freezer:</b> <a href="{{ container.freezer.get_absolute_url }}">{{ container.freezer.name }}</a><br />
9 <br />
10 <b>uuid:</b> {{ container.uuid }}<br />
11 <br />
12 <b>Allowed Sample Types:</b><br />
13 {{ container.sample_type.all|join:", " }}<br />
14 <br />
15 <b>Max Samples:</b> {{ container.max_items }}<br />
16 <b>Sample Count:</b> {{ container.sample_set.count }}<br />
17 <b>Space Available:</b> {{ container.space_available }}<br />
18 <br />
19
20 {{ rendered_samples }}
21
22