{% 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.short_description %}{{ action.short_description }}
{% endif %}{{ action.type.view_text }} {% if not current_user.is_readonly %} {{ action.type.perform_text }} {% endif %}
{% endfor %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}