How to access the user profile in a Django template?

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

Leave a Comment