我很难同时使用两种 django 酥脆的形式。我有一个表单可以将新数据输入到我的应用程序中,另一个表单显示在引导模式中供用户提供反馈。下面,我已经将我的模板剥离到了最基本的部分。
我有一个小组表格:
class Crispy_Group_Form(forms.ModelForm):
def __init__(self, *args, **kwargs):
self.helper = FormHelper()
# self.helper.form_tag = False
self.helper.form_class = 'form-horizontal'
self.helper.layout = Layout(
Fieldset(
'New Group',
Field('name', placeholder='Group Name'),
Field('notes', placeholder='Group Notes', rows='10', css_class='input-xxlarge'),
),
FormActions(
Submit('save_changes', 'Save changes', css_class="btn-primary"),
HTML(' | '),
Submit('cancel', 'Cancel'),
)
)
self.helper.form_id = 'id-Crispy_Group_Form'
self.helper.form_method = 'post'
super(Crispy_Group_Form, self).__init__(*args, **kwargs)
class Meta:
model = Group
exclude = ['slug']
和联系表格
class Crispy_ContactForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
self.helper = FormHelper()
self.helper.form_class = 'form ajax'
self.helper.form_action = 'feedback'
self.helper.form_tag = False
self.helper.layout = Layout(
Fieldset(
'Contact Form',
Field('topic', placeholder='Topic', css_class='input-medium'),
Field('subject', placeholder='Subject', css_class='input-xlarge'),
Field('message', placeholder='Message', rows='5', css_class='input-xlarge'),
Field('sender', placeholder='Sender', css_class='input-xlarge'),
),
)
self.helper.form_id = 'id-Crispy_ContactForm'
self.helper.form_method = 'post'
super(Crispy_ContactForm, self).__init__(*args, **kwargs)
class Meta:
model = Feedback
exclude = ['creation_date']
我的观点:
def bootstrap_test(request):
return render_to_response(
"bootstrap_test.html", {
'feedback_form' : Crispy_ContactForm,
'form' : Crispy_Group_Form,
},
context_instance=RequestContext(request))
还有我非常基本的模板:
{% load crispy_forms_tags %}
<form action="{% url feedback %}" method="post" id="id-Crispy_ContactForm" class="form">
{% crispy feedback_form %}
</form>
{% crispy form %}
feedback_form 显示两次。好像两种形式都是同一种形式。如果我从模板中删除 feedback_form,那么它会显示 Group 表单。如果我重新排列两者,使 {% crispy form %} 在 feedback_from 上方,它会正确显示两种不同的形式。
我阅读了文档,但找不到有效的方法。
为什么会发生这种情况,我需要调整什么才能正确显示?