我已经升级到Django 4.2.2了。在我的列表视图中,每个元素都有按钮,按钮包含一个链接。一切都运行良好,但升级后,引号在html中呈现为'& quot'而不是'"'。
def clone_button(self,obj):
button = "<button type=\"button\" onclick=\"location.href='/admin/clone/%s/%s'\";>Clone</button>" % (obj.id,"keep_date")
return button
clone_button.allow_tags=True
我现在要做什么不同的事?
1条答案
按热度按时间nwwlzxa71#
将html字符串标记为可安全输出。或者使用html_output快捷方式。