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 }}
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 }}