{% extends "base.html" %} {% load mathfilters %} {% block title %}Sample Batch{% endblock %} {% block jumbotron %}Batch Number{% endblock %} {% block jumbotronsub %}{{ batch.id }}{% endblock %} {% block content %}

{{ batch.strain.manufacturer }}, {{ batch.strain.name }}

Source: {{ batch.get_source_display }} {% if batch.source_batch %} from #{{ batch.beer_num }}: {{ batch.beer_name }} {% endif %}
{% if batch.parent.all %} Parents:{% endif %} {% for parent in batch.parent.all %} {{ parent.id}}{% if not forloop.last %},{% endif %} {% endfor %}

{% csrf_token %}
Batch Samples
Print Selected Labels for this Propogation

{% endblock %}