{% import 'macros/forms.html' as forms %} {% import 'macros/modal.html' as modal %} {% macro antibody_add_form(form, endpoint, method, id) %} {% if id == -1 %} {% set action = url_for(endpoint) %} {% set title = 'Add Antibody' %} {% else %} {% set action = url_for(endpoint, id_=id) %} {% set title = 'Edit Antibody' %} {% endif %} {% set modal_id = 'modal-edit-antibody-' ~ id %} {% set form_id = 'form-edit-antibody-' ~ id %} {% call modal.modal(id=modal_id, title=title) %}
{{ form.hidden_tag() }}
{{ forms.field_row(form.label, 'Name') }}
{{ forms.field_row(form.clone, 'Clone') }}
{{ forms.field_row(form.host, 'Host') }}
{{ forms.field_row(form.antigen, 'Antigen') }}
{{ forms.field_row(form.specification, 'Clonality') }}
{{ forms.field_row(form.storage_temp, 'Store at') }}
{{ forms.field_row(form.conjugate, 'Conjugate') }}
{{ form.submit() }}
{{ forms.script_send_form( form=form, form_name=form_id, method=method, message_field=form_id ~ '-messages' ) }} {% endcall %} {% endmacro %}