[Answer]-How to change unicode to string in django template

1👍

The django will render unicode string to utf-8 automatically.

maybe the issue is the url routing? try to add ur before the regex patterns

url(ur'^(?P<username>[-\w]+)/list/$', url_list.as_view(), name='url_list'),

Leave a comment