{% extends "lims/entries/shipment-base.html" %} {% load static %} {% load icons %} {% load progress_extras %} {% block title %}Samples{% endblock %} {% block sub_title %}Shipment Collection Protocol by Group/Sample{% endblock %} {% block full %}
{% for group in object.groups.all %}

{{ group.name }} | {{ group.num_samples }} sample{{ group.num_samples|pluralize }} {% if group.comments %} | {{ group.comments }}{% endif %}

  • {% include "lims/entries/group-samples.html" with samples=group.samples.all request_detail=True %}
{% endfor %}
{% include "lims/comments.html" with object=shipment %} {% endblock %}