1

我在我的模板中使用 formset:

from django.forms.models import inlineformset_factory

formset_builder = inlineformset_factory(MyEntity, MyEntity.relation.through)
formset = formset_builder()

在我的模板中,对于一个表单集,我可以看到:

<label for="id_theformsetid_set-0-mywidgetname">MyRelationAttribute</label>

如何获得(在视图、模板中......)这个“ theformsetid ”?(我想在表单集操作期间用它来重构 javascript

4

1 回答 1

2

内景:

formset.fk.related.get_accessor_name()

内模板:

formset.fk.related.get_accessor_name
于 2013-10-30T11:51:26.117 回答