I have a model:
from django.db import models CHOICES = ( (\'s\', \'Glorious spam\'), (\'e\', \'Fabulous eggs\'), ) class MealOrder(models.Model):
You have Model.get_FOO_display() where FOO is the name of the field that has choices.
In your template do this :
{{ scoop.get_flavor_display }}