{% 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 %} {% if action.is_hidden %}This action has been hidden from action lists.
{% endif %} {% if action.description_as_html %}{{ action.description_as_html | safe }}{% else %}{{ action.description }}
{% endif %} {% with instrument = action.instrument %} {% include "instruments/instrument_scientists.html" %} {% endwith %} {{ action.type.view_text }} {% if not current_user.is_readonly %} {{ action.type.perform_text}} {% endif %} {% if not current_user.is_readonly %} {% if may_edit %} Edit Action {% endif %} {% if not action.type.admin_only or current_user.is_admin %} Use as Template {% endif %} {% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}