Hi;
I want to do something like this in my Page Template:
mysql> select * from products order by name, newRow;
Now, I know I can do this:
tal:define="items python:sequence.sort(items, (('name', 'cmp', 'asc'),))"
but that only orders by name, not by name *and* newRow. Any ideas?
TIA,
Tony