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

Instruments

Instruments in {{ service_name }} map real instruments to actions performed with them. Read more.

{% if current_user.is_admin and not current_user.is_readonly %} Create Instrument {% endif %} {% for instrument in instruments %}
{{ toggle_favorite_instrument_form.csrf_token() }}

{{ instrument.name }}

{% if instrument.is_hidden %}

This instrument has been hidden from instrument lists.

{% endif %} {% if instrument.short_description %}
{% if instrument.short_description_is_markdown %}{{ instrument.short_description | markdown_to_safe_html(anchor_prefix='instrument-short-description') | safe }}{% else %}

{{ instrument.short_description }}

{% endif %}
{% endif %} {% include "instruments/instrument_scientists.html" %} {% endfor %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}