Django - 从模板中的ModelChoiceField获取显示值

时间:2015-03-01 13:20:56

标签: python html django

所以我有一个模板如下:

<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")

如何在文本字段中获取实际显示值而不仅仅是主键?

0 个答案:

没有答案