{% from 'antibodies/pane.html' import pane_details with context %} {% from "comments/pane.html" import comment_pane with context %} {% from "files/pane.html" import files_pane with context %} {% from 'requests/pane.html' import request_pane with context %} {% from 'batches/pane.html' import batch_pane with context %} {% from "dilutions/pane.html" import dilutions_pane with context %} {% from "antibodies/form.html" import antibody_add_form %} {% from "dilutions/form.html" import dilutions_add_form %} {% from "files/form.html" import file_upload_form %} {% import 'macros/pill.html' as pill %} {% set n_comments = antibody.comments | length %}

{{ antibody.label }}

{{ pane_details( status='active', pane_id='tab-info', antibody=antibody, form=form ) }} {{ dilutions_pane( status='fade', pane_id='tab-dilutions', antibody=antibody, form=dilution_form ) }} {{ batch_pane( status='fade', pane_id='tab-batches', consumable=antibody, form=batch_form ) }} {{ files_pane( status='fade', pane_id='tab-files', entity=antibody, form=file_form ) }} {{ comment_pane( status='fade', pane_id='tab-comments', entity=antibody, form=comment_form ) }} {{ request_pane( status='fade', pane_id='tab-requests', entity=antibody, form=request_form ) }}