My model has a choice field:

===========================================
class Foo(models.Model):
    STATUS = (
        ('C', 'Created'),
        ('E', 'Edited'),
        ('F', 'Finished'),
    )
    status = models.CharField(maxlength=1, choices=STATUS)
===========================================

Now in my template I want to display the full name, not the key of the
choice (as I get when using {{ foo.status}}  ). How?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to