In my Model I define choices along the lines of:
LANG_CHOICES = (
("Englisch", (
(u"en-gb", u"England"),
(u"en-us", u"United States of America"),
), )
The field is defined as:
lang_source = models.CharField(max_length=5, choices=LANG_CHOICES, default="en-gb")
Naturally, in my template I'd want to display the human-readable value, i.e.
{{ object.lang_source }}
should not print "en-gb" (or the respective value) but rather "England".
What is the most elegant way to accomplish this? (Besides in the View importing a dict from the Model and manually translating the value.)