{% if get_user() %} { "widgettype": "HBox", "options": { "css": "portal-user-info clickable", "width": "auto" }, "binds": [ { "wid": "self", "event": "click", "actiontype": "urlwidget", "popup_options": { "eventpos": true, "cwidth": 10, "dismiss_events": ["command"] }, "target": "Popup", "options": { "url": "{{entire_url('user_menu.ui')}}" } } ], "subwidgets": [ { "widgettype": "Svg", "options": { "url": "{{entire_url('/bricks/imgs/user.svg')}}", "rate": 1.3 } }, { "widgettype": "Text", "options": { "css": "portal-username", "text": "{{get_username()}}" } } ] } {% else %} { "widgettype": "HBox", "options": { "css": "portal-user-info", "width": "auto" }, "subwidgets": [ { "widgettype": "Button", "options": { "label": "登录", "css": "portal-login-btn", "i18n": true }, "binds": [ { "wid": "self", "event": "click", "actiontype": "urlwidget", "target": "self", "options": { "url": "{{entire_url('/rbac/user/login.ui')}}" } } ] }, { "widgettype": "Button", "options": { "label": "注册", "css": "portal-register-btn", "i18n": true }, "binds": [ { "wid": "self", "event": "click", "actiontype": "urlwidget", "target": "self", "options": { "url": "{{entire_url('/rbac/user/register.ui')}}" } } ] } ] } {% endif %}