所以我有一个模板如下:
<input class="form-control" id="{{ form.date.auto_id }}" name="{{ form.date.html_name }}" readonly="readonly" type="text" value="{{ form.date.value }}">
它渲染的字段是ModelChoiceField:
class DateChoiceField(forms.ModelChoiceField):
def label_from_instance(self, obj):
return obj.date.strftime("%A %d. %B %Y")
如何在文本字段中获取实际显示值而不仅仅是主键?