我想在django模板中簡單顯示模型formset。我收到以下錯誤 這裏是我試圖顯示:實際表單集形式 中在view.py,在這裏是相關的代碼片段: #
# create Address Model Form Set
#
AddressFormSet = modelformset_factory(Address, form=businessForms.AddressModelForm)
i
我手動顯示我的formset作爲表,每個表單都循環。在每一個底部形態包括我喜歡的隱藏字段: {% for hidden in form.hidden_fields %}
{{ hidden }}
{% endfor %}
但問題是,我也包括像在我的窗體屬性: class AllocationForm(forms.ModelForm):
name = forms.CharF
在home.html中,{{form.as_p}}沒有顯示窗體,無法弄清楚什麼是問題,但一切看起來都正確。 views.py: class DeptForm(ModelForm):
class Meta:
model = Department
fields = ['dep_name']
def save(request):
form = Dep
我有一個模型,MyModel,與經理MyModelManager,其中有一個create_mymodel(....)方法: def create_mymodel(self, foo, bar):
new_obj = MyModel(
foo = foo,
bar = bar,
# the rest of the fields are calculated