{% extends "base.html" %} {% block title %}Manage gratings{% endblock %} {% block body %}

Manage saved gratings

Bulk delete saved gratings, with an option to also remove their linked runs.

{% if request.args.get("message") %}

{{ request.args.get("message") }}

{% endif %} {% if gratings %}
Delete options
{% for grating in gratings %}
{{ grating.name }}

{{ grating.grating_type }} · {{ grating.period_lpermm }} l/mm · {{ grating.id }}

{% endfor %}
{% else %}

No gratings have been saved yet.

{% endif %} {% endblock %}