mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-28 04:58:46 +02:00
109 lines
3.9 KiB
Twig
109 lines
3.9 KiB
Twig
{# @copyright Copyright (C) 2010-2019 Combodo SARL #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
{% apply spaceless %}
|
|
|
|
{% UIContentBlock Standard {'sContainerClass':'ibo-update-core'} %}
|
|
|
|
{% UITitle ForPage {'sTitle':'iTopUpdate:UI:PageTitle'|dict_s} %}
|
|
|
|
{% UIHtml %}
|
|
<div class="ibo-v-spacer"> </div>
|
|
{% EndUIHtml %}
|
|
|
|
{% UIContentBlock Standard {'sContainerClass':'display_block display-files'} %}
|
|
{% UIFieldSet Standard {'sLegend':'iTopUpdate:UI:Status'|dict_s} %}
|
|
|
|
{% UIAlert ForInformation {'sId':'header-requirements', 'IsCollapsible':false, 'IsClosable':false} %}
|
|
{% UIHtml %}
|
|
<span id="can-core-update">{{ 'iTopUpdate:UI:CanCoreUpdate:Loading'|dict_s }} <i class="ajax-spin fas fa-spinner fa-spin" aria-hidden="true"></i></span>
|
|
{% EndUIHtml %}
|
|
{% EndUIAlert %}
|
|
|
|
{% UIField Standard {'sLabel':'iTopUpdate:UI:CurrentVersion'|dict_s} %}
|
|
{% UIHtml %}
|
|
{{ 'UI:iTopVersion:Long'|dict_format(constant('ITOP_APPLICATION'), constant('ITOP_VERSION'), constant('ITOP_REVISION'), constant('ITOP_BUILD_DATE')) }}
|
|
{% EndUIHtml %}
|
|
{% EndUIField %}
|
|
|
|
{% UIField Standard {'sLabel':'iTopUpdate:UI:DiskFreeSpace'|dict_s} %}
|
|
{% UIHtml %}
|
|
{{ sDiskFreeSpace }}
|
|
{% EndUIHtml %}
|
|
{% EndUIField %}
|
|
|
|
{% UIField Standard {'sLabel':'iTopUpdate:UI:ItopDiskSpace'|dict_s, 'ValueId':'itop-disk-space'} %}
|
|
{% UIHtml %}
|
|
<i class="ajax-spin fas fa-spinner fa-spin" aria-hidden="true"></i>
|
|
{% EndUIHtml %}
|
|
{% EndUIField %}
|
|
|
|
{% UIField Standard {'sLabel':'iTopUpdate:UI:DBDiskSpace'|dict_s, 'ValueId':'db-disk-space'} %}
|
|
{% UIHtml %}
|
|
<i class="ajax-spin fas fa-spinner fa-spin" aria-hidden="true"></i>
|
|
{% EndUIHtml %}
|
|
{% EndUIField %}
|
|
|
|
{% UIField Standard {'sLabel':'iTopUpdate:UI:FileUploadMaxSize'|dict_s} %}
|
|
{% UIHtml %}
|
|
{{ sFileUploadMaxSize }}
|
|
{% EndUIHtml %}
|
|
{% EndUIField %}
|
|
|
|
{% EndUIFieldSet %}
|
|
|
|
{% UIFieldSet Standard {'sLegend':'iTopUpdate:UI:SelectUpdateFile'|dict_s} %}
|
|
{% UIForm Standard {} %}
|
|
{% UIInput ForHidden {'sName':'operation', 'sValue':'ConfirmUpdate'} %}
|
|
{% UIInput ForHidden {'sName':'transaction_id', 'sValue':sTransactionId} %}
|
|
|
|
{% UIHtml %}
|
|
<div id="header-file-size" class="header_message message_error" style="display: none">
|
|
<div>
|
|
<span>{{ 'iTopUpdate:Error:FileUploadMaxSizeTooStandard'|dict_s }}</span>
|
|
</div>
|
|
<div>
|
|
<span>{{ 'iTopUpdate:UI:PostMaxSize'|dict_format(sPostMaxSize) }}</span>
|
|
</div>
|
|
<div>
|
|
<span>{{ 'iTopUpdate:UI:UploadMaxFileSize'|dict_format(sUploadMaxSize) }}</span>
|
|
</div>
|
|
</div>
|
|
{% EndUIHtml %}
|
|
|
|
{% UIContentBlock Standard {'sContainerClass':'upload_container'} %}
|
|
{% UIInput Standard {'sType':'file', 'sId':'file', 'sName':'file', 'sValue':''} %}
|
|
{% EndUIContentBlock %}
|
|
|
|
{% UIHtml %}
|
|
<div id="dobackup-warning" class="header_message message_info" style="display: none">{{ 'iTopUpdate:UI:DoBackup:Warning'|dict_s }}</div>
|
|
{% EndUIHtml %}
|
|
|
|
{% UIField Standard {'sLabel':'iTopUpdate:UI:DoBackup:Label'|dict_s, 'sLayout':'large'} %}
|
|
{% UIInput Standard {'sType':'checkbox', 'sId':'doBackup', 'sName':'doBackup', 'sValue':'1', 'Checked':true} %}
|
|
{% EndUIField %}
|
|
|
|
{% UIField Standard {'sLabel':'iTopUpdate:UI:DoFilesArchive'|dict_s, 'sLayout':'large'} %}
|
|
{% UIInput Standard {'sType':'checkbox', 'sId':'doFilesArchive', 'sName':'doFilesArchive', 'sValue':'1', 'Checked':true} %}
|
|
{% EndUIField %}
|
|
|
|
{% UIContentBlock Standard {'sContainerClass':'ibo_check_update_submit'} %}
|
|
{% UIButton ForPrimaryAction {'sLabel':'iTopUpdate:UI:CheckUpdate'|dict_s, 'sId':'check-update', 'bIsSubmit':true, 'IsDisabled':true} %}
|
|
{% UIHtml %}
|
|
<i id="submit-wait" style="display: none" class="fas fa-spinner fa-spin" aria-hidden="true"></i>
|
|
{% EndUIHtml %}
|
|
{% EndUIContentBlock %}
|
|
|
|
{% EndUIForm %}
|
|
|
|
{% EndUIFieldSet %}
|
|
|
|
{% UIFieldSet Standard {'sLegend':'iTopUpdate:UI:History'|dict_s} %}
|
|
{% UIDataTable ForResult {'oPage':oPage, 'sListId':'iboupdatehistory', 'oSet':oSet} %}
|
|
{% EndUIDataTable %}
|
|
|
|
{% EndUIFieldSet %}
|
|
{% EndUIContentBlock %}
|
|
|
|
|
|
{% EndUIContentBlock %}
|
|
{% endapply %} |