{% extends "base.html" %} {% block title %}Instrument #{{ instrument.id }}: {{ instrument.name }} — {{ service_name }}{% endblock %} {% block content %}
{{ instrument.description }}
{% include "instruments/instrument_scientists.html" %} {% for action in instrument.actions %}{{ action.description }}
{% if action.type == ActionType.MEASUREMENT %} View Measurements Perform Measurement {% elif action.type == ActionType.SIMULATION %} View Simulations Perform Simulation {% else %} View Samples Create Sample {% endif %} {% endfor %} {% endblock %}