我有一個Django表單集與一組初始數據,加載一個外鍵關係對象到初始形式:Django的FORMSET訪問初始數據模板
{{ cellcountformset.management_form }}
{% for form in cellcountformset %}
<div id="">
{{ form.errors }}
{{ form.as_p }}
</div>
{% endfor %}
相關型號是這樣的:
class CellType(models.Model):
readable_name = models.CharField(max_length=50)
machine_name = models.CharField(max_length=50)
comment = models.TextField(blank=True)
class CellCount(models.Model):
cell_count_instance = models.ForeignKey(CellCountInstance)
cell = models.ForeignKey(CellType)
normal_count = models.IntegerField()
abnormal_count = models.IntegerField()
comment = models.TextField(blank=True)
我希望能夠顯示由CellCount模型的單元屬性引用的單元的machine_name作爲div
的#id
。我使用ModelCormSet作爲CellCount,它傳遞一個CellType對象列表作爲其初始數據。
優秀 - 感謝您的! – jvc26