mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 02:58:43 +02:00
18 lines
937 B
Twig
18 lines
937 B
Twig
{# @copyright Copyright (C) 2010-2024 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
{% UIPanel Neutral { sTitle:'DataFeatureRemoval:Analysis:Title'|dict_s, sSubTitle: 'DataFeatureRemoval:Analysis:SubTitle'|dict_format(rule_count) } %}
|
|
{% UIDataTable ForForm { sRef:'aCheckRules', aColumns:aCheckRules.Columns, aData:aCheckRules.Data} %}{% EndUIDataTable %}
|
|
{% EndUIPanel %}
|
|
|
|
{% UIForm Standard {} %}
|
|
{% UIInput ForHidden { sName:'transaction_id', sValue:sTransactionId} %}
|
|
{% UIInput ForHidden { sName:'operation', sValue:'DeletionPlan'} %}
|
|
{% for sKey, sClass in aClasses %}
|
|
{% UIInput ForHidden { sName:"classes[" ~ sKey ~ "]", sValue:sClass } %}
|
|
{% endfor %}
|
|
{% UIToolbar ForButton {} %}
|
|
{% UIButton ForPrimaryAction {sLabel:'UI:Button:PlanDeletion'|dict_s, sName:'btn_plandeletion', sId:'btn_plandeletion', bIsSubmit:true} %}
|
|
{% EndUIToolbar %}
|
|
{% EndUIForm %}
|