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'),
Source:stackexchange.com
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'),