{% include 'storage-view-edit.html' %} {% include 'compounds-view-edit.html' %} {# STEPS #}
{% if Entity.entityData.steps %}

{{ 'Steps'|trans }} ({{ Entity.entityData.steps|length }})

{% for step in Entity.entityData.steps %}
{{ step.body }} {% if step.finished %} {{ 'completed'|trans }} {% endif %} {% if step.deadline %} {{ 'Deadline:'|trans }} {{ step.deadline|format_datetime() }} {% endif %}
{% endfor %}

{% endif %}
{# EXPERIMENTS LINKS #} {% if Entity.entityData.experiments_links %}

{% trans %} Linked experiment {% plural 2 %} Linked experiments {% endtrans %} ({{ Entity.entityData.experiments_links|length }})

{% for link in Entity.entityData.experiments_links %} {% include 'link-view-one.html' %} {% endfor %}

{% endif %} {# ITEMS LINKS #} {% if Entity.entityData.items_links %}

{{ 'Linked resources'|trans }} ({{ Entity.entityData.items_links|length }})

{% for link in Entity.entityData.items_links %} {% include 'link-view-one.html' %} {% endfor %}

{% endif %} {% include 'related-snippet.html' %}