mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
* N°8761 - Assist in cleaning up data prior to uninstalling extensions - handle transaction ID + add deletion plan screen * N°8761 - poc of deletion plan screen * code style * N°8761 - WIP deletion plan execution * Delete all parent classes objects + cleanup * 🌐 translation (EN only) * remove history * In case of no leaf class to remove, delete also the child classes * 🎨 refactor & fix typo * Analysis not stored anymore in DB * Analysis for removed modules * 🌐 dico * Add spinner to setup button "Go to backoffice" * Fix count after PR review * Fix after PR review * Fix Number of elements to remove * Fix arrays --------- Co-authored-by: odain <olivier.dain@combodo.com>
17 lines
722 B
Twig
17 lines
722 B
Twig
{# @copyright Copyright (C) 2010-2024 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
|
|
{% UIForm Standard {} %}
|
|
{% UIInput ForHidden {sName:'operation', sValue:'Analyze'} %}
|
|
{% UIInput ForHidden {sName:'transaction_id', sValue:sTransactionId} %}
|
|
|
|
{% UIFieldSet Standard {sLegend:'DataFeatureRemoval:Features:Title'|dict_s} %}
|
|
{% UIDataTable ForForm { sRef:'aExtensions', aColumns:aExtensions.Columns, aData:aExtensions.Data} %}{% EndUIDataTable %}
|
|
{% EndUIFieldSet %}
|
|
|
|
{% UIToolbar ForButton {} %}
|
|
{% UIButton ForPrimaryAction {sLabel:'UI:Button:Analyze'|dict_s, sName:'btn_apply', sId:'btn_apply', bIsSubmit:true} %}
|
|
{% EndUIToolbar %}
|
|
{% EndUIForm %}
|