I have a Django application and want to display multiple choice checkboxes in a user's profile. They will then be able to select multiple items.
I am able save the data in the database, but it is saving like '[u'A', u'B']'.
What should i do to save the selections in a list?
Thanks a lot in advance.