{% extends "base.html" %} {% block scripts %} {% include "sortable_table_script.html" %} {% endblock scripts %} {% block head_title %}Antibody List{% endblock %} {% block title %}Antibody List{% endblock %} {% block content %} {% if perms.reagents.add_antibody %}

Click here for a new antibody

{% endif %} {% for antibody in object_list %} {% endfor %}
Antibody Protein Size Species Catalog
{{ antibody }} {%for protein in antibody.protein.all%}{{protein}} {% endfor %} {{antibody.protein_size}} {{antibody.source_species}} {{antibody.catalog}} Detail {% if perms.reagents.change_antibody %} Edit {% endif %} {% if perms.reagents.delete_antibody %} delete {% endif %}

Click here for a new antibody

{% endblock %}