{% extends 'base.html' %} {% block content %}

{{ _("Interventions") }}

{{ _("Register manually...") }}

{{ _("You can filter the results below with this form") }}

{% for intervention in interventions %} {% endfor %}
Intervention ID {{ _("Maintenance") }} {{ _("Machine") }} {{ _("User") }} {{ _("Timestamp") }} {{ _("Action") }}
{{ intervention.intervention_id }} {{ intervention.maintenance.description }} {{ intervention.machine.machine_name }} {{ intervention.user.name }} {{ intervention.user.surname }} {{ intervention.timestamp | datetimeformat('%b %d, %Y %I:%M %p') }} {% if intervention.replay %} {% endif %} {{ _("Edit") }} {{ _("Delete") }}
{% if interventions|length >= 500 %} {{ _("Only first 500 records are displayed. Use filters if needed.") }} {% endif %} Export table {% endblock %}