1 | <%inherit file="/base.mako"/> |
---|
2 | <%namespace file="/message.mako" import="render_msg" /> |
---|
3 | |
---|
4 | %if message: |
---|
5 | ${render_msg( message, status )} |
---|
6 | %endif |
---|
7 | |
---|
8 | <br/><br/> |
---|
9 | |
---|
10 | <% sample = sample_dataset.sample %> |
---|
11 | |
---|
12 | <ul class="manage-table-actions"> |
---|
13 | <li> |
---|
14 | <a class="action-button" href="${h.url_for( controller='requests_common', action='view_dataset_transfer', cntrller='requests_admin', sample_id=trans.security.encode_id( sample.id ) )}"> |
---|
15 | <span>Browse datasets</span></a> |
---|
16 | </li> |
---|
17 | </ul> |
---|
18 | |
---|
19 | <div class="toolForm"> |
---|
20 | <div class="toolFormTitle">Dataset Information</div> |
---|
21 | <div class="toolFormBody"> |
---|
22 | <div class="form-row"> |
---|
23 | <label>Name:</label> |
---|
24 | <div style="float: left; width: 250px; margin-right: 10px;"> |
---|
25 | ${sample_dataset.name} |
---|
26 | </div> |
---|
27 | <div style="clear: both"></div> |
---|
28 | </div> |
---|
29 | <div class="form-row"> |
---|
30 | <label>File on the Sequencer:</label> |
---|
31 | <div style="float: left; width: 250px; margin-right: 10px;"> |
---|
32 | ${sample_dataset.file_path} |
---|
33 | </div> |
---|
34 | <div style="clear: both"></div> |
---|
35 | </div> |
---|
36 | <div class="form-row"> |
---|
37 | <label>Size:</label> |
---|
38 | <div style="float: left; width: 250px; margin-right: 10px;"> |
---|
39 | ${sample_dataset.size} |
---|
40 | </div> |
---|
41 | <div style="clear: both"></div> |
---|
42 | </div> |
---|
43 | <div class="form-row"> |
---|
44 | <label>Created on:</label> |
---|
45 | <div style="float: left; width: 250px; margin-right: 10px;"> |
---|
46 | ${sample_dataset.create_time} |
---|
47 | </div> |
---|
48 | <div style="clear: both"></div> |
---|
49 | </div> |
---|
50 | <div class="form-row"> |
---|
51 | <label>Updated on:</label> |
---|
52 | <div style="float: left; width: 250px; margin-right: 10px;"> |
---|
53 | ${sample_dataset.update_time} |
---|
54 | </div> |
---|
55 | <div style="clear: both"></div> |
---|
56 | </div> |
---|
57 | <div class="form-row"> |
---|
58 | <label>Transfer status:</label> |
---|
59 | <div style="float: left; width: 250px; margin-right: 10px;"> |
---|
60 | ${sample_dataset.status} |
---|
61 | %if sample_dataset.status == sample.transfer_status.ERROR: |
---|
62 | <br/> |
---|
63 | ${sample_dataset.error_msg} |
---|
64 | %endif |
---|
65 | </div> |
---|
66 | <div style="clear: both"></div> |
---|
67 | </div> |
---|
68 | </div> |
---|
69 | </div> |
---|