{# # --------------------------------------------------------------------- # # 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 . # # --------------------------------------------------------------------- #} {% import 'components/form/fields_macros.html.twig' as fields %} {% extends "layout/page_without_tabs.html.twig" %} {% set container_size = "narrow" %} {% block content_title %} {{ __('Import forms') }} {% endblock content_title %} {% block content_body %}

{{ __("Resolve issues") }}

{% set existing_replacements = replacements|length %} {% for issue in issues %} {% set original_name = issue.default_name ?? issue.name %} {% set replacement_index = loop.index0 + existing_replacements %} {% endfor %}
{{ __("Itemtype") }} {{ __("Original value") }} {{ __("Replacement value") }}
{{ issue.itemtype|itemtype_name }}
{{ original_name }} {{ fields.dropdownField( issue.itemtype, 'replacements[' ~ replacement_index ~ '][replacement_id]', issue.replacement_id|default(''), '', { 'field_class': 'col-12', 'aria_label' : __("Replacement value for '%s'")|format(original_name), 'no_label' : true, 'right' : 'all', 'mb' : '', } ) }}
{% for skipped_form in skipped_forms %} {% endfor %} {% for itemtype, replacements_for_itemtype in replacements %} {% for original_name, items_id in replacements_for_itemtype %} {% endfor %} {% endfor %}
{% endblock content_body %}