{% extends "base.html" %} {% block title %}Actions — {{ service_name }}{% endblock %} {% block content %}

{% if action_type %}{{ action_type.name }} {% endif %}Actions

{% if action_type and action_type.description %}{{ action_type.description }}{% else %}Actions represent processes like creating a sample, performing a measurement or running a simulation.{% endif %} Read more.

{% if current_user.is_admin and not current_user.is_readonly %} {% if action_type %} Create Action {% else %} Create Action {% endif %} {% endif %} {% for action in actions %}
{{ toggle_favorite_action_form.csrf_token() }}

{% if action.user is not none %} {{ action.user.name }} / {% endif %} {% if action.instrument is not none %} {{ action.instrument.name }} — {% endif %} {{ action.name }}

{% if action.is_hidden %}

This action has been hidden from action lists.

{% endif %} {% if action.description_as_html or action.description %}
{% if action.description_as_html %}{{ action.description_as_html | safe }}{% else %}

{{ action.description }}

{% endif %}
{% endif %} {% with instrument = action.instrument %} {% include "instruments/instrument_scientists.html" %} {% endwith %}

{{ action.type.view_text }} {% if not current_user.is_readonly %} {{ action.type.perform_text }} {% endif %}

{% endfor %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}