{% extends "lims/base.html" %} {% load humanize %} {% load markup %} {% load icons %} {% load misc_tags %} {% load static %} {% block page_heading %}

Request | {% if user.is_superuser %}{{ object.project }} | {% endif %}{{ object.name }}

{% if not object.is_editable %}{% endif %} {{ object.identity }} | {{ object.kind.name }} {% endblock %} {% block object_tools %} {% include "lims/tools-base.html" %} {% endblock %} {% block object_status %}

{{ object.get_status_display }}

Type:
{{ object.kind.name }}
Shipment:
{% if object.shipment %}{{object.shipment.name}}{% endif %}
Number of Samples:
{{ object.num_samples }}
{% endblock %} {% block full %}
{% if object.status == object.STATES.DRAFT %}
{% for sample in object.sample_list %} {% endfor %}
Name Group Location Container Barcode Comments
{{ sample.name }} {{ sample.group }} {{ sample.location }} {{ sample.container.name }} {{ sample.barcode|default_if_none:"—" }} {{ sample.comments|default_if_none:"—" }}
{% else %} {% include "lims/entries/group-samples.html" with samples=object.sample_list %} {% endif %}
PARAMETERS
    {% if object.kind.view_template %}
  • {% include object.kind.view_template with request=object %}
  • {% else %} {% include "requests/base-view.html" with request=object %} {% endif %}
{% include "lims/comments.html" with object=object %} {% endblock %}