如何在我的所有模板中查找UserProfile值?

时间:2009-03-19 14:58:03

标签: django django-templates

我的“UserProfile”记录附有一个标记,用于登录用户,让我知道用户是否在我的网站上启用了“新功能”。我希望能够在我的所有模板中检查这个django模板变量来隐藏/显示新功能

我已经使用过:
    {%if user.is_authenticated%}

要检查已登录的用户,我只想为该检查添加一个标志。我不想修改用户模型,有没有办法从模板中为用户查找UserProfile?

1 个答案:

答案 0 :(得分:1)

{% if user.get_profile.has_feature_enabled %}