-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubmission_from_vdjbase.html
32 lines (24 loc) · 1.19 KB
/
submission_from_vdjbase.html
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
{% extends "base.html" %}
{% block pagetitle %} Submission from VDJbase entry {% endblock %}
{% block c_body %}
<div class="col-sm-12">
<form action="{{ url_for('submission_from_vdjbase', id=id) }}" method="POST" name="form" class="form-horizontal" enctype="multipart/form-data">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<p>Add sequence {{ sequence_name }}</p>
</div>
<div class="row pad">
<div class="col-sm-12">
{{ form.hidden_tag() }}
{{ render_field_with_errors(form.sample_name, class="form-control") }}
{{ render_field_with_errors(form.submission_id, class="form-control") }}
</div>
</div>
</div>
<div class="form-group row col-sm-6">
<input type="submit" value="Cancel" class="btn btn-default col-sm-offset-1" id="cancel" name="cancel">
<input type="submit" value="Create" class="btn btn-primary col-sm-offset-1" id="create" name="create">
</div>
</div>
</form>
{% endblock %}