11 lines
728 B
XML
11 lines
728 B
XML
{% set data = j2_currency_data(request) %}
|
|
{"widgettype":"VBox","options":{"width":"100%"},"subwidgets":[
|
|
{% for r in data %}
|
|
{"widgettype":"HBox","options":{"cheight":3,"width":"100%"},"subwidgets":[
|
|
{"widgettype":"Text","options":{"text":{{json.dumps(r.get('currency',''),ensure_ascii=False)}},"width":"20%"}},
|
|
{"widgettype":"Text","options":{"text":{{json.dumps((r.get('call_count',0)|string)+'次',ensure_ascii=False)}},"width":"25%"}},
|
|
{"widgettype":"Text","options":{"text":{{json.dumps(r.get('amount',0)|string,ensure_ascii=False)}},"width":"25%"}},
|
|
{"widgettype":"Text","options":{"text":{{json.dumps(r.get('amount_cny',0)|string,ensure_ascii=False)}},"width":"30%"}}
|
|
]}{% if not loop.last %},{% endif %}{% endfor %}
|
|
]}
|