{% extends "lims/base.html" %} {% load icons %} {% load humanize %} {% load converter %} {% load static %} {% load time_extras %} {% load progress_extras %} {% load settings %} {% block page_heading %}

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

{{ object.identity }} | Started {{ object.created|naturalday }} {% endblock %} {% block object_tools %} {% show_icon label='Reports' icon='ti ti-md ti-bar-chart-alt' badge=object.num_reports %} {% show_icon label='Data' icon='ti ti-md ti-layout-grid3' badge=object.datasets.count %} {% show_icon label='History' icon='ti ti-md ti-timer' %} {% if user.is_superuser %} {% show_icon label='Statistics' icon='ti ti-md ti-pulse' %} {% endif %} {% if object.datasets.count %}
{% show_icon label='Download' icon='ti ti-md ti-download' %} {% endif %} {% get_setting "LIMS_USE_CRM" as crm %} {% if request.user == object.project and crm %} {% show_icon label='Feedback' icon='ti ti-md ti-star' %} {% endif %} {% endblock %} {% block object_status %}
{% if object.is_active %}

Active

{% endif %}
Datasets:
{{ object.datasets.count }}
Reports:
{{ object.num_reports }}
Total Time:
{{ object.total_time|humanize_duration }}
Start:
{{ object.start|naturalday }}
{% endblock %} {% block full %}
{% for group in object.groups %}

{{ group.name }}

{% include "lims/entries/group-samples.html" with samples=group.samples.all %}
{% endfor %} {% with session.orphans as orphans %} {% if orphans %}

Orphaned Data/Reports | No associated sample

{% include "lims/entries/group-samples.html" with samples=orphans %} {% endif %} {% endwith %}
{% endblock %}