1
我在django_tables2如下表:結合兩列到一個使用django_tables2
class CustomerTable(tables.Table):
class Meta:
model = Customer
attrs = {'class': 'table'}
fields = {'lastname', 'firstname', 'businessname', 'entrydate'}
我的客戶模型具有firstname
和lastname
場。
我想要的是有一個名稱列填充類似'lastname'+', '+firstname'
的東西,以便它讀取姓氏,名字可以按姓氏排序。
The docs表明,這是可能的,但它不會給現有數據重用放入一個新列的工作示例。只要改變現有的數據。
我怎麼會去這兩個字段組合成一列?