{% 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.name | get_translated_text(default=_('Unnamed Instrument')) }} {{ import_information_symbol(instrument) }}

{% if instrument.is_hidden %}

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

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

{{ instrument.short_description | get_translated_text }}

{% endif %}
{% endif %} {% if instrument.location is not none %}
{{ _('Location') }}: {{ instrument.location | get_full_location_name(include_id=true) }}
{% endif %} {% include "instruments/instrument_scientists.html" %} {% endfor %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}