Is there a way for me to access specific information from the apostrophe-users module in a page template?
For example, if I added a "nickname" field to apostrophe-users and would like to show a personalized welcome message on the home page to every user, is there a way to do something similar to
<p>Hi, {{ data.user.title }}</p>
in home.html but instead showing the nickname?
{{ data.user.nickname }} currently gives me nothing. Is there another solution?