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

Instruments

Instruments in {{ service_name }} map real instruments in Jülich or at other facilities 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.description_as_html %}{{ instrument.description_as_html | safe }}{% else %}

{{ instrument.description }}

{% endif %} {% include "instruments/instrument_scientists.html" %} {% endfor %} {% endblock %}