{% extends "base.html" %} {% block head_title %}Construct Detail - {{ object|safe }}{% endblock %} {% block title %}Construct Detail - {{ object|safe }}{% endblock %} {% block content %}
Strain{{ object|safe }}
Protein
    {% for protein in object.protein.all %}
  • {{protein}}
  • {% endfor%}
Source{{ object.source }}
Location{{ object.location }}
Box{{ object.box }}
Researcher{% for researcer in object.researcher_set %}{{ researcher }}{% endfor %}
Background{{ object.background|safe }}
Selection{{ object.selection }}
Genotype{{ object.genotype|safe }}
Notes{{ object.notes }}
{% if perms.reagents.change_strain %}

To update strain details click edit

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