egroupware_official/api/templates/default/long_task.xet
nathan 0cb09698a1 Long task dialog improvements
- Add 'Skip all' button to skip any further failed tasks
- Add button to copy the log
2024-07-10 11:08:56 -06:00

30 lines
1006 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE overlay PUBLIC "-//EGroupware GmbH//eTemplate 2.0//EN" "https://www.egroupware.org/etemplate2.0.dtd">
<overlay>
<template id="etemplate.long_task" template="" lang="" group="0" version="1.9.001">
<et2-hbox class="long_task">
<et2-image class="dialog_icon"></et2-image>
<et2-vbox class="ui-dialog-content">
<et2-label id="message"></et2-label>
<progress id="progressbar"/>
<et2-label id="totals"></et2-label>
<et2-vbox class="log" id="log"></et2-vbox>
</et2-vbox>
<et2-button-copy slot="footer" align="right" from="_log" copy-label="Copy">
</et2-button-copy>
</et2-hbox>
<styles>
#long_task > div {
width: 100%;
}
.long_task .log {
max-height: 10em;
overflow: auto;
}
.long_task .et2_progress {
width: 100%;
height: 1em;
}
</styles>
</template>
</overlay>