我有一个django-table2,其中每一行都包含一个User对象的外键。当我点击用户名的排序箭头时,它按(我推测)排序用户的密钥而不是名称。我在文档中找不到有关如何解决此问题的任何内容。
Python 2.7,Django 1.5.1,django-tables2 0.14.0
答案 0 :(得分:0)
我发誓我反复浏览文档。不知道我是怎么错过这个的。
http://django-tables2.readthedocs.org/en/latest/#specifying-alternative-ordering-for-a-column
Owner = tables.Column(order_by=("Owner.Full_Name"))