mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-08-23 20:55:39 +01:00
21 lines
454 B
HTML
21 lines
454 B
HTML
{% with config.RELATIONSHIP_FORM_HELP as help_text %}
|
|
{% if help_text %}
|
|
<div class="alert alert-info mt-3 pb-0">
|
|
{{ help_text|linebreaks }}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<hr>
|
|
|
|
<form class="form"
|
|
method="POST">
|
|
{% csrf_token %}
|
|
|
|
{% load bootstrap4 %}
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button class="btn btn-success" type="submit">Submit</button>
|
|
{% endbuttons %}
|
|
</form> |