mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 12:08:47 +02:00
28 lines
1.1 KiB
Twig
28 lines
1.1 KiB
Twig
{# @copyright Copyright (C) 2010-2025 Combodo SARL #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
{# Usable variables: #}
|
|
{# * sTitle => page title #}
|
|
{# * sMessage => success message #}
|
|
{# * sError => error message #}
|
|
|
|
{# DataFeatureRemoval #}
|
|
|
|
{% UIPanel ForInformation { sTitle:'DataFeatureRemoval:Main:Title'|dict_s, sSubTitle: 'DataFeatureRemoval:Main:SubTitle'|dict_s } %}
|
|
|
|
{% UIAlert ForInformation { sTitle:'DataFeatureRemoval:Helper:Title'|dict_s } %}
|
|
{{ 'DataFeatureRemoval:Helper:Desc1'|dict_s }}<BR>
|
|
{{ 'DataFeatureRemoval:Helper:Desc2'|dict_s }}
|
|
{% EndUIAlert %}
|
|
|
|
{% if null != DataFeatureRemovalErrorMessage %}
|
|
<div id="feature_removal_error_msg_div" style="display:block">
|
|
{% UIAlert ForFailure { sTitle:'DataFeatureRemoval:Failure:Title'|dict_s, sId: 'feature_removal_error_msg', sContent:DataFeatureRemovalErrorMessage } %}
|
|
{% EndUIAlert %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include 'Features.html.twig' %}
|
|
{% include 'ExtensionRemovalData.html.twig' %}
|
|
{% EndUIPanel %}
|