[973924]: / qiita_pet / templates / vamps_submission.html

Download this file

41 lines (35 with data), 1.4 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% extends sitebase.html %}
{% block content %}
<h1>Submission summary for study: <b>{{study_title}}</b></h1>
<form role="form" action="{% raw qiita_config.portal_dir %}/vamps/{{preprocessed_data_id}}" method="post">
<div class="panel panel-default">
<div class="panel-heading">
The information below describes information contained in the sample
and prep templates which will be submitted to VAMPS.
</div>
{% if level != 'danger' %}
<table class="table">
{% for category, summary in stats %}
<tr>
<th colspan="2" align="center">{{category}}</th>
</tr>
<tr>
<td>{{summary}}</td>
</tr>
{% end %}
{% end %}
</table>
</div>
The investigation type is: <b>{{investigation_type}}</b>
<br/><br/>
{% if level != 'danger' %}
{% if allow_submission %}
<input type="submit" class="btn btn-primary" value="Submit to VAMPS">
{% else %}
<b>{% raw disabled_msg %}
{% end %}
{% end %}
<br/><br/>
<a class="btn btn-primary" href="{% raw qiita_config.portal_dir %}/study/description/{{study_id}}?top_tab=preprocessed_data_tab&sub_tab={{preprocessed_data_id}}">Return to study</a>
</form>
{% end %}