2

我确定这里缺少一些愚蠢的东西,但我正在尝试使用 ifequal 来评估模板变量。

这是我的模型:

USER_TYPES = (
('instructor', 'Instructor'),
('student', 'Student'),
)


class UserProfile(models.Model):
    type = models.CharField(
        choices=USER_TYPES, max_length=12
    )
    user = models.ForeignKey(
        User, 
        unique=True
    )

    def __unicode__(self):
        return u'%s' % (self.type)

...我在模板中使用它:

{% ifequal user.userprofile_set.get student %}
You're a student! 
{% endifequal %}

当我简单地打印出 {{ user.userprofile_set.get }} 我得到:

student

不知道我错过了什么 - 任何帮助表示赞赏!

4

1 回答 1

5

ifequal 已被弃用......但我认为这有效:

{% ifequal user.userprofile_set.get.type "student" %}
    Your a student! 
{% endifequal %}
于 2012-07-31T06:33:41.987 回答