标签: django django-forms django-templates
我正在尝试使用表单的CheckboxSelectMultiple小部件,但我想改变它的输出方式。有没有办法将<li>删除或更改为其他内容?
CheckboxSelectMultiple
<li>
答案 0 :(得分:5)
implementation of CheckboxSelectMultiple被硬编码为使用<ul><li></li></ul>表单。更改它的唯一方法是子类化对象并覆盖render方法。
<ul><li></li></ul>
render