我正在尝试创建一个指向相关user
的列。我决定尝试URLColumn
。文本属性正常工作,但当我尝试添加href
网址时,它会呈现<a href="None">Text</a>
。
你知道问题出在哪里吗?
class PossiblePairsTable(tables.Table):
customer_one = tables.URLColumn(attrs={'href':'somehref'},text=lambda x: x.reservation_one.customer.userprofile.display_name,)