我在我的django应用程序中使用UserProfile。在我看来,它非常有效。但是我很难在模板中显示这些值。
我尝试在模板中打印的变量:
{{request.user.get_profile()。phone}}
错误:
无法解析余额:'(。)。''来自'request.user.get_profile()。phone'
发生了什么事?如何打印mu userprofile变量?答案 0 :(得分:2)
请尝试使用此代码:
{{ request.user.get_profile.phone }}