I have a form in Django with a TextField that receives comma separated input e.g. test1,test2,test3,test4, which is then split like such:
test = request.POST.get('test', '').split(',')
then saved to a Postgres database model
and then retrieved and displayed
When displayed however, the returned split list is in unicode,
[u'test1', u'test2', u'test3', u'test4']
instead of the desired
['test1', 'test2', 'test3', 'test4']
Why is this? The problem with this is I can't figure out how to display each element of the array in a django template page - the regular
{% for element in list %}
<p>{{ element }}</p>
{% endfor %}
isn't working. Any thoughts?