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
{{ request.user }}
Use {{ request.user.get_profile.whatever }}. Django's templating language automatically calls things that are callable - in this case, the .get_profile() method.
{{ request.user.get_profile.whatever }}
.get_profile()