{% extends 'base.html' %} {% block title %} {{ operation.preparation.name|title }} {% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ operation.preparation.name }}


{% for section_name, section_data in operation.items() %} {% if section_data and section_name not in ['id', 'decoys'] %} {% set section_values = section_data.values()|list %} {% set non_empty_values = [] %} {% for value in section_values %} {% if value|trim %} {% set non_empty_values = non_empty_values.append(value) %} {% endif %} {% endfor %} {% if non_empty_values %}

{{ section_name.replace("_", " ")|title }}

{% for detail_key, detail_value in section_data.items() %} {% if detail_value|trim %}

{{ detail_key.replace("_", " ")|title }}

{{ detail_value }}

{% endif %} {% endfor %}
{% endif %} {% endif %} {% endfor %}
{% if containers %}

Decoys

{% endif %}

{% if containers %}

Stats

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}