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
If it helps anyone, I used the followings in my template:
Username: {{ user.username }}
User Full name: {{ user.get_full_name }}
User Group: {{ user.groups.all.0 }}
Email: {{ user.email }}
Session Started at: {{ user.last_login }}
A sample result is like this:
User: auditor ezio
User Group: auditGroup
Username: testUser03
Email: testuser03@auditor.com
Session Started at- April 16, 2018, 9:38 p.m.
Thanks :)