{# # --------------------------------------------------------------------- # # GLPI - Gestionnaire Libre de Parc Informatique # # http://glpi-project.org # # @copyright 2015-2024 Teclib' and contributors. # @copyright 2003-2014 by the INDEPNET Development Team. # @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 . # # --------------------------------------------------------------------- #} {% macro kb_comment(comment, level, can_comment) %} {% set has_answers = comment['answers'] is defined and comment['answers']|length > 0 %}
  • {% if has_answers %} {% set nb_sub_answers = 0 %} {% set answers_html %} {% for answer in comment['answers'] %} {{ _self.kb_comment(answer, level + 1, can_comment) }} {% set nb_sub_answers = nb_sub_answers + answer['answers']|length %} {% endfor %} {% endset %} {% endif %}
  • {% endmacro %} {% if can_comment %}
    {% include 'pages/tools/kb/comment_form.html.twig' with { kbitem_id: kbitem_id, language: language, } %}
    {% endif %} {% if comments|length == 0 %}
    {{ __('No comments') }}
    {% else %}
    {% endif %}