{% extends "base.html" %}
{% block head_title %}Construct Detail - {{ object }}{% endblock %}
{% block title %}Construct Detail - {{ object }}{% endblock %}
{% block content %}
Construct | {{ object.construct }} |
Plasmid | {{ object.plasmid }} |
Source | {{ object.source }} |
Location | {{ object.location }} |
Selection | {{ object.selection }} |
Box | {{ object.box }} |
Notes | {{ object.notes }} |
{% if perms.reagents.change_construct %}
To update construct details click 
{% endif %}
{% if object.sequencing_set.all %}
Sequencing Results:
Date |
Primer |
File |
Notes |
{% for sequencing in object.sequencing_set.all %}
{{sequencing.date}} |
{{sequencing.primer}} |
Chromatogram |
{{sequencing.notes}} |
{% endfor %}
Mutagenesis
Used as Template | Generated By |
|
|
Cloning
{% for cloning in object.cloning_set.all %}
- {{ cloning }}
{% endfor %}
{% if object.constructshipment_set.all %}
Shipments
{% for shared in object.constructshipment_set.all %}
- {{ shared.ship_date }} to {{ shared.recipient }}
{% endfor %}
{% endif %}
{% with object.experiment_set.all as experiment_list %}
{% include "experiment_list_table.html" %}
{% endwith %}
{% include "comment.html" %}
{% endblock %}