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