{% extends "base.html" %} {% block title %}{{ _('Action Types') }} — {{ service_name }}{% endblock %} {% block scripts %} {{ super() }} {% if current_user.is_admin and not current_user.is_readonly %} {% endif %} {% endblock %} {% block content %}

{{ _('Action Types') }}

{{ _('Action Types represent different kinds of actions, such as sample creation or measurements.') }} {{ _('Read more.') }}

{% if current_user.is_admin and not current_user.is_readonly %} {{ _('Create Action Type') }} {% endif %} {% for action_type in action_types %}

{{ action_type.name | get_translated_text(default=_('Unnamed Action Type')) }} {{ import_information_symbol(action_type) }}

{{ _('View Actions') }} {% if current_user.is_admin and not current_user.is_readonly and action_type.fed_id is none %} {{ _('Edit Action Type') }} {% endif %}

{% endfor %} {% endblock %}