TypeError at /myurl
'<' not supported between instances of 'int' and 'str'
>>> l = ['a', 1, 'x', 22]
>>> sorted(l)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: '<' not supported between instances of 'int' and 'str'