In a user's *.yaml file (in user/accounts) I notice the "Level:" property defaults to "Visitor" when someone registers on the frontend using root/user_register/ (the login plugin route). Of course, this can be changed to something else like "Member" in Admin.
What I am trying to do is write a little twig logic into the body of a default page based on this "Level" property attached to the current (logged in) user.
Twig has no problem accessing {{grav.user.username}}, and {{grav.user.email}}, but not {{grav.user.Level}}. I'd really like to make this work but I've run out of ideas. What's the solution?