我有一个与ManyToOne关联的类别相关联的标签。我需要在模板上渲染所有标签,但是有一个条件 - 它们都应该按类别划分,并且它们是相互关联的。 应该是这样的:
<label>Some category name</label>
<input type="checkbox">Tag1
<input type="checkbox">Tag2
<input type="checkbox">Tag3
<label>Some different category name</label>
<input type="checkbox">Tag1
<input type="checkbox">Tag2
<input type="checkbox">Tag3
..等等。 任何人都可以帮助我吗)