Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我覆盖了 django 更改列表页面。
我已将模板更改为change_list_results我想要的 lokk。
change_list_results
但是我想在标题中使用小表单,export pdf但是当我将form标签添加到 html 时,Django 会自动剥离它,因为结果已经在表单标签内。
export pdf
form
怎么能解决呢?
结果在“changelist-form”表单中,根据规则,您不能在另一个表单中添加表单。您可以做的是将表单添加到“更改列表表单”之外。
https://github.com/django/django/blob/stable/1.4.x/django/contrib/admin/templates/admin/change_list.html#L86