{# # --------------------------------------------------------------------- # # 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 'generic_show_form.html.twig' %} {% import 'components/form/fields_macros.html.twig' as fields %} {% block form_fields %} {{ fields.htmlField('', parent != null ? get_class(parent) : constant('NOT_AVAILABLE'), _n('Type', 'Types', 1)) }} {% if parent is instanceof('CommonDBTM') %} {{ fields.htmlField('', parent != null ? parent.getLink() : constant('NOT_AVAILABLE'), _n('Item', 'Items', 1)) }} {% else %} {{ fields.nullField() }} {% endif %} {{ fields.htmlField('', get_item_name('NotificationTemplate', item.fields['notificationtemplates_id']), 'NotificationTemplate'|itemtype_name) }} {{ fields.nullField() }} {{ fields.htmlField('', item.fields['create_time'], __('Creation date')) }} {{ fields.htmlField('', item.fields['send_time'], __('Expected send date')) }} {{ fields.htmlField('', item.fields['sent_time'], __('Send date')) }} {{ fields.htmlField('', item.fields['sent_try'], __('Number of tries of sent')) }} {{ fields.smallTitle(_n('Email', 'Emails', 1)) }} {{ fields.htmlField('', item.fields['sender'], __('Sender email')) }} {{ fields.htmlField('', item.fields['sendername'], __('Sender name')) }} {{ fields.htmlField('', item.fields['recipient'], __('Recipient email')) }} {{ fields.htmlField('', item.fields['recipientname'], __('Recipient name')) }} {{ fields.htmlField('', item.fields['replyto'], __('Reply-To email')) }} {{ fields.htmlField('', item.fields['replytoname'], __('Reply-To name')) }} {{ fields.htmlField('', item.fields['messageid'], __('Message ID')) }} {{ fields.htmlField('', additional_headers, __('Additional headers')) }} {{ fields.htmlField('', item.fields['name'], __('Subject')) }} {{ fields.smallTitle(__('Content')) }} {% set has_html_content = item.fields['body_html'] is not empty %}
{% if has_html_content %}
{% set body_html = item.cleanHtml(item.fields['body_html'])|safe_html %} {% if undisclose_body %} {% set body_html = __('The content of the notification contains sensitive information and therefore cannot be displayed.') %} {% endif %} {{ fields.htmlField('', body_html, null, { no_label: true, full_width: true, }) }}
{% endif %}
{% set body_text = item.fields['body_text']|nl2br %} {% if undisclose_body %} {% set body_text = __('The content of the notification contains sensitive information and therefore cannot be displayed.') %} {% endif %} {{ fields.htmlField('', body_text, null, { no_label: true, full_width: true, }) }}
{% endblock %}