{% extends "base.html" %} {% block title %}Action Types — {{ service_name }}{% 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 }}

View Actions {% if current_user.is_admin and not current_user.is_readonly %} Edit Action Type {% endif %}

{% endfor %} {% endblock %}