{% extends "base.html" %} {% block head_title %}Antibody Detail - {{ object }}{% endblock %} {% block title %}Antibody Detail - {{ object }}{% endblock %} {% block content %}
{% if object.vendor %}{% endif %} {% if object.catalog %}{% endif %} {% if object.source %}{% endif %} {% if object.notes %}{% endif %}
Antibody{{object.antibody}}
Protein{% for protein in object.protein_set.all %}{{ protein.count }} {% endfor %}
Size{{object.protein_size}}
Source Species{{object.source_species}}
Location{{object.location}}
Vendor{{ object.vendor }}
Catalog Number{{ object.catalog }}
Source{{ object.source }}
Notes{{ object.notes }}
{% if perms.reagents.change_antibody %}

To update antibody details click edit

{% endif %}
{% with object.experiment_set.all as experiment_list %} {% include "experiment_list_table.html" %} {% endwith %}
{% include "comment.html" %} {% endblock %}