dashboard_for_sage/wwwroot/concurrent_users.ui

33 lines
873 B
XML

{
"widgettype": "VBox",
"options": {
"bgcolor": "var(--sage-bg-card, #FFFFFF)",
"padding": "24px",
"borderRadius": "8px",
"flex": "1",
"minHeight": "120px",
"boxShadow": "0 2px 8px rgba(0,0,0,0.1)"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"fontSize": "14px",
"color": "#888",
"marginBottom": "8px",
"otext": "当前并发用户",
"i18n": true
}
},
{
"widgettype": "Text",
"id": "concurrent_users_value",
"options": {
"text": "{{get_concurrent_users(request)}}",
"fontSize": "32px",
"fontWeight": "bold",
"color": "#fa8c16"
}
}
]
}