{% import 'macros/forms.html' as forms %} {% import 'macros/modal.html' as modal %} {% macro plasmid_add_form(form, endpoint, method, id) %} {% if id == -1 %} {% set action = url_for(endpoint) %} {% set title = 'Add Plasmid' %} {% else %} {% set action = url_for(endpoint, id_=id) %} {% set title = 'Edit Plasmid' %} {% endif %} {% set modal_id = 'modal-edit-plasmid-' ~ id %} {% set form_id = 'form-edit-plasmid-' ~ id %} {% call modal.modal(id=modal_id, title=title) %}
{{ forms.script_send_form( form=form, form_name=form_id, method=method, message_field=form_id ~ '-messages' ) }} {% endcall %} {% endmacro %} {% macro upload_plasmid_form(form, endpoint, id, type) %} {% if type == 'map' %} {% set title = 'Upload plasmid map' %} {% elif type == 'plasmid' %} {% set title = 'Upload plasmid file' %} {% endif %} {% set modal_id = 'modal-upload-' ~ id ~ '-' ~ type %} {% call modal.modal(id=modal_id, title=title) %} {% endcall %} {% endmacro %}