{% extends "base.html" %} {% load custom_filters %} {% block title %}Study List{% endblock title%} {% block scripts %} {% include "sortable_table_script.html" %} {% endblock scripts %} {% block header %}Study List{% endblock header %} {% block content %} {% for study in study_list %} {% for strain in study.strain.all %} {% endfor %}
Description Strain Start Date
{{study.description}}{% endfor %} {{study.start_date}}

To add a new study click here.

{% endblock content %}