Re: Showing the value of a choice instead of the key

2006-09-07 Thread cyberco
Thanks! That is indeed in a non-intuitive location. --~--~-~--~~~---~--~~ 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

Re: Showing the value of a choice instead of the key

2006-09-06 Thread Malcolm Tredinnick
On Wed, 2006-09-06 at 22:40 +, cyberco wrote: > My model has a choice field: > > === > class Foo(models.Model): > STATUS = ( > ('C', 'Created'), > ('E', 'Edited'), > ('F', 'Finished'), > ) > status = models.CharField(

Showing the value of a choice instead of the key

2006-09-06 Thread cyberco
My model has a choice field: === class Foo(models.Model): STATUS = ( ('C', 'Created'), ('E', 'Edited'), ('F', 'Finished'), ) status = models.CharField(maxlength=1, choices=STATUS) =