On May 3, 11:01 am, Alex Rades <alera...@gmail.com> wrote:
> Hi,
> i have a simple form which among other fields has a ChoiceField with
> some choices:
>
> CHOICES=(
>   (1, u'Bar basf asdf'),
>   (2, u'Asdf', qewr'),
>   (3, u'Afefafafa saef3')
> )
>
> when i receive the form, i do all the usual procedure until i want to
> retrieve the value of the choicefield (have to produce a report
> so I don't need the value as a number, rather the string
> representation of the choice (eg. "Bar basf asdf" instead of "1").
>
> Could you please explain me how to do this? (I mean, without going
> manually through the CHOICES)
>
> Thank you very much

If this is a modelform, when you get the model instance you can do
x.get_FOO_display()
where FOO is the name of the field.

Otherwise, you will have to look it up against choices - a quick way
to do this is
dict(CHOICES)[choice]
where choice is the relevant element from the form's cleaned_data.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to