{% extends "layouts/base.twig" %} {% block title %}{{ translations.checklists }}{% endblock %} {% block head %} {% endblock %} {% block page_heading %}

{{ translations.checklists }}

{{ translations.checklists_subtitle }}

{% endblock %} {% block content %}

{{ translations.checklist_list }}

{# Filtr tagów #}
{{ translations.tags }}:
{% if checklists|length == 0 %} {% else %} {% for checklist in checklists %} {% endfor %} {% endif %}
{{ translations.name }} {{ translations.production_area }} {{ translations.execution_time }} {{ translations.tags }} {{ translations.actions }}
{{ translations.no_checklists_found }}
{{ checklist.getName() }}
{% if checklist.getDescription() %}
{{ checklist.getDescription() }}
{% endif %}
{% if checklist.getWorkstationName() %} {{ checklist.getWorkstationName() }} {% else %} {% endif %} {% if checklist.getExecutionTime() %} {{ checklist.getExecutionTime() }} {% else %} {% endif %} {% set entity_tags = tags_by_entity[checklist.getId()] ?? [] %} {% include 'operational_framework/components/tag_manager.twig' with { entity_type: 'checklist', entity_id: checklist.getId(), entity_tags: entity_tags } %}
{% include 'operational_framework/checklist/modals/checklist.twig' %} {% include 'operational_framework/checklist/modals/tasks.twig' %} {% endblock %} {% block scripts %} {% endblock %}