10 lines
434 B
XML
10 lines
434 B
XML
{% set amt = j2_today_amount(request) %}
|
|
{
|
|
"widgettype": "VBox",
|
|
"options": {"css": "card", "padding": "16px", "borderRadius": "12px", "width": "100%"},
|
|
"subwidgets": [
|
|
{"widgettype": "Text", "options": {"text": "今日金额", "fontSize": "12px", "color": "var(--sage-text-secondary)"}},
|
|
{"widgettype": "Title2", "options": {"text": "¥{{'%.2f' % amt}}", "fontWeight": "700", "marginTop": "4px"}}
|
|
]
|
|
}
|