{% extends "base.html" %} {% block title %}Action #{{ action.id }}: {{ action.name }} — {{ service_name }}{% endblock %} {% block content %}
{% if is_public %}{% else %}{% endif %} This custom action is {% if not is_public %}not {% endif %}public.
{% endif %}{{ action.description }}
{% with instrument = action.instrument %} {% include "instruments/instrument_scientists.html" %} {% endwith %} {% if action.type == ActionType.MEASUREMENT %} View Measurements Perform Measurement {% elif action.type == ActionType.SIMULATION %} View Simulations Perform Simulation {% else %} View Samples Create Sample {% endif %} {% if may_edit %} Edit Action {% endif %} Use as Template {% endblock %} {% block scripts %} {{ super() }} {% endblock %}