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

{{ _('Instruments') }}

{{ _('Instruments in %(service_name)s map real instruments to actions performed with them.', service_name=service_name, actions_url=url_for('.actions')) }} {{ _('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.translation.name }}

{% if instrument.is_hidden %}

{{ _('This instrument has been hidden from instrument lists.') }}

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

{{ instrument.translation.short_description }}

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