Ю
manufacturer = serializers.SerializerMethodField(required=False, read_only=True)
def get_manufacturer(self, instance):
return {'title': 'Производитель', 'value': instance.manufacturer}
Либо копать в сторону метода
to_representation
def to_representation(self, instance):
ret = super().to_representation(instance)
ret['manufacturer'] = {'title': 'Производитель', 'value': instance.manufacturer}
return ret