标签未显示在字段之前

时间:2012-01-11 06:41:32

标签: django django-forms django-templates

此代码段来自forms.py:

class TestForm(forms.Form):
    Specialist = forms.ModelChoiceField(label = 'Test', queryset = SpecialistModel.objects.all(), empty_label = None)

这来自模板:

{{ form.Specialist }}

显示字段而标签不显示。哪个可能是问题?

1 个答案:

答案 0 :(得分:1)

您必须手动显示标签:

{{ form.Specialist.label }}

{{ form.Specialist.label_tag }}

显示以html <label></label>标记包装的标签。