Re: [DRF] Serializing a field of type choice

2021-06-10 Thread ezequia...@gmail.com
d and return your > text according to your choice key. > > On Thu, 10 Jun 2021 at 09:57, Lalit Suthar wrote: > >> can I see that model field, I don't think any extra configuration is >> required for it >> >> On Thu, 10 Jun 2021 at 04:44, ezequia...@gmai

Re: [DRF] Serializing a field of type choice

2021-06-10 Thread ezequia...@gmail.com
ListField(child=serializers.CharField()) class Meta: model = Question fields = ('id', ' de_description', 'cd_type_of_question') On Thursday, June 10, 2021 at 1:27:18 AM UTC-3 sutharl...@gmail.com wrote: > can I see that model field, I don'

[DRF] Serializing a field of type choice

2021-06-09 Thread ezequia...@gmail.com
Hey guys Could you help me with a Django Rest Framework question? I have a field in my model that has possible input values, so I'm using the *choices=* attribute in my model. I'm having difficulty serializing the return of this data in drf. Could someone give me a hint on how best to implemen