I\'m storing some additional per-user information using the AUTH_PROFILE_MODULE.
We can access the user in a Django template using {{ request.user }} bu
Yes it is possible to access profile from template using request.user.get_profile
However there is a small caveat: not all users will have profiles, which was in my case with admin users. So calling directly
{{ request.user.get_profile.whatever }} from the template will cause an error in such cases.
If you are sure all your users always have profiles it is safe to call from template, otherwise call get_profile() from within try-except block in your view and pass it to the template.