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

Click here for a new strain

{% endif %}
{% for strain in object_list %} {% endfor %}
Strain Background Plasmids Selection
{{ strain|safe }} {{strain.background|safe}}
    {% for construct in strain.plasmids_set %}
  • {{construct}}
  • {% endfor %}
{{strain.selection}} Detail {% if perms.reagents.change_strain %} Edit {% endif %} {% if perms.reagents.delete_strain %} delete {% endif %}
{% endblock %}