vote up 4 vote down star

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 }} but how do we access fields in the profile since the profile is only accessible via a function user.get_profile() ?

Is it really required to explicitly pass the profile into the template every time?

flag

67% accept rate

2 Answers

vote up 8 vote down check

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

link|flag
+1: Beat me by 3 seconds! – S.Lott Jan 7 at 21:24
Very cool. Didn't know that it'll "call a callable" implicitly. – Swaroop C H Jan 7 at 22:12
See docs.djangoproject.com/en/dev/… The rules are very cool. – S.Lott Jan 7 at 22:14
vote up 3 vote down

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.

link|flag
it's try-except ;) – Vasil Mar 19 at 16:09
:) yep, thanks, fixed it – umnik700 Mar 19 at 16:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.