models.py:
class Person(models.Model): name = models.CharField(max_length=200) CATEGORY_CHOICES = ( (\'M\', \'Male\'),
It looks like you were on the right track - get_FOO_display() is most certainly what you want:
In templates, you don't include () in the name of a method. Do the following:
()
{{ person.get_gender_display }}