{# # --------------------------------------------------------------------- # # GLPI - Gestionnaire Libre de Parc Informatique # # http://glpi-project.org # # @copyright 2015-2025 Teclib' and contributors. # @licence https://www.gnu.org/licenses/gpl-3.0.html # # --------------------------------------------------------------------- # # LICENSE # # This file is part of GLPI. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # --------------------------------------------------------------------- #} {% extends "layout/page_without_tabs.html.twig" %} {% set container_size = "narrow" %} {% block content_title %} {{ __('Import forms') }} {% endblock content_title %} {% block content_body %}

{{ __("Import preview") }}

{% macro render_row(form_id, form_name, status_icon, status_text, show_resolve_issues_action, show_remove_action) %} {% endmacro %} {% for form_id, form_name in preview.getValidForms() %} {{ _self.render_row( form_id, form_name, 'ti-check text-success', __("Ready to be imported"), false, true ) }} {% endfor %} {% for form_id, form_name in preview.getInvalidForms() %} {{ _self.render_row( form_id, form_name, 'ti-x text-danger', __("Can't be imported"), true, true ) }} {% endfor %}
{{ __("Form name") }} {{ __("Status") }} {{ _n('Action', 'Actions', get_plural_number()) }}
{{ form_name }}
{{ status_text }}
{% if show_resolve_issues_action or show_remove_action %}
{% if show_remove_action %} {% endif %} {% if show_resolve_issues_action and show_remove_action %} {% endif %} {% if show_resolve_issues_action %} {% endif %}
{% endif %}
{% for skipped_form_id in preview.getSkippedForms()|keys %} {% endfor %} {% for replacement_data in replacements %} {% endfor %}
{% endblock content_body %}