{% include 'storage-view-edit.html' %} {% include 'compounds-view-edit.html' %}
{# STEPS #}

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

{# ADD STEP #}
{% for step in Entity.entityData.steps %}
{{ step.body }} {% if step.finished %} {{ 'completed'|trans }} {% endif %} {% if mode != 'edit-template' %} {% endif %}
{% endfor %}
{# Add step input #}

{# LINKS #} {# EXPERIMENTS LINKS #}

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

{# display experiments links #}
{% if Entity.entityData.experiments_links %} {% for link in Entity.entityData.experiments_links %} {% include 'link-view-one.html' %} {% endfor %} {% endif %} {# ADD LINK #}

{# ITEMS LINKS #}

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

{# DISPLAY ITEMS LINKS #}
{% if Entity.entityData.items_links %} {% for link in Entity.entityData.items_links %} {% include 'link-view-one.html' %} {% endfor %} {% endif %} {# ADD LINK #}

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