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

Actions

Actions represent processes like creating a sample, performing a measurement or running a simulation. Read more.

{% 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 }}

{{ action.description }}

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

{% if action.type == ActionType.MEASUREMENT %} View Measurements {% if not current_user.is_readonly %} Perform Measurement {% endif %} {% elif action.type == ActionType.SIMULATION %} View Simulations {% if not current_user.is_readonly %} Perform Simulation {% endif %} {% else %} View Samples {% if not current_user.is_readonly %} Create Sample {% endif %} {% endif %}

{% endfor %} {% endblock %}