37 lines
601 B
XML
37 lines
601 B
XML
{% set dmgr=DownloadMgr(request) %}
|
|
{% set status=dmgr.get_task_status(params_kw.taskid) %}
|
|
{% if status %}
|
|
{
|
|
"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}}"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
{
|
|
"widgettype":"Text",
|
|
"options":{
|
|
"cwidth":16,
|
|
"cheight":14,
|
|
"text":"{{paramas_kw.taskid}} get status error"
|
|
}
|
|
}
|
|
{% endif %}
|