#load "../../lib/app.uce" RENDER(Request& context) { starter_boot(context); StarterUser users(context); if(!users.is_signed_in()) { starter_redirect("account/login", context); return; } context.call["starter"]["page_title"] = "Profile"; DTree user = users.current(); String roles = ""; user["roles"].each([&](DTree role, String key) { if(roles != "") roles += ", "; roles += role.to_string(); }); <>

Profile

Email:

Roles:

Created:

">Logout

}