27 lines
440 B
XML
27 lines
440 B
XML
{% set dmgr=DownloadMgr(request) %}
|
|
{% set status=dmgr.get_task_status(params_kw.taskid) %}
|
|
{
|
|
"widgettype":"VBox",
|
|
"options":{
|
|
"cwidth":16,
|
|
"cheight":14,
|
|
"css":"card"
|
|
},
|
|
"subwidgets":[
|
|
{
|
|
"widgettype":"Title3",
|
|
"options:{
|
|
"text":"{{status.filename}}",
|
|
"wrap":true,
|
|
"halign":"left"
|
|
}
|
|
},
|
|
{
|
|
"widgettype":"Text",
|
|
"options":{
|
|
"text":"{{status.completedLength}}/{{status.totalLength}}"
|
|
}
|
|
}
|
|
]
|
|
}
|