mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-21 16:22:20 +02:00
38 lines
1.4 KiB
Twig
38 lines
1.4 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' %}
|
|
|
|
{% if bAnalysisOk %}
|
|
{{ "DataFeatureRemoval:Analysis:Ok"|dict_s }}
|
|
|
|
{% UIToolbar ForButton {} %}
|
|
<a href="{{ sSetupUrl }}">
|
|
{% UIButton ForPrimaryAction {sLabel:'UI:Button:Setup'|dict_s, sName:'btn_setup', sId:'btn_setup', bIsSubmit:false} %}
|
|
</a>
|
|
{% EndUIToolbar %}
|
|
{% endif %}
|
|
{% EndUIPanel %}
|