{% extends "base.html" %} {% block title %}Actions — {{ service_name }}{% endblock %} {% block content %}
{% 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 %} {% if action.is_hidden %}This action has been hidden from action lists.
{% endif %} {% if action.description_as_html %}{{ action.description_as_html | safe }}{% else %}{{ action.description }}
{% 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 %}