我有如下表格,
class CacheCheck(forms.Form):
type = forms.TypedChoiceField(choices=TYPE_CHOICES, initial='FIXED')
record = forms.TypedChoiceField(choices=RECORD_CHOICES, initial='FIXED')
hostname = forms.CharField(max_length=100)
但是,如何从输入中删除标签并将初始值设置为下拉菜单。然而,初始值不应该是选择之一。
谢谢,