I'm sure there is something silly I'm missing here, but I'm trying to use ifequal to evaluate a template variable. Here's my model:
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)
...and I'm using this in the template:
{% ifequal user.userprofile_set.get student %}
Your a student!
{% endifequal %}
When I simply print out {{ user.userprofile_set.get }} I get:
student
Not sure what I'm missing - any help is appreciated!
ifequalis deprecated in recent django versions, just useif a == b. Put"aroundstudent, and be sure to try that on the django shell first:user.userprofile_set.get() == 'student'– Paulo Scardine Jul 31 '12 at 5:35{% if user.userprofile_set.get.type == "student" %}and it worked great! – Jeffrey Stilwell Aug 1 '12 at 1:51