I have model data that came from a MultipleChoiceField. I have figured out it is rendering in unicode, but can’t figure out how to display the data.
{{chef.meal}} displays [u'Brunch']
How do you remove the unicode to only display the data?
Thanks!
That’s a list. Join it or iterate over it to get the contents.