我们可以格式化模型表单在模板中如何在Django中显示模型表单

所以我使用django用户模型(从django.contrib.auth.models导入用户)并使用ModelForm(从django.forms导入ModelForm)创建了一个模型表单。 当我将它显示在模板上时,它会显示在选择框上作为用户名。 我想显示它是first_name和last_name。

这是我用于HTML格式的代码

<form class="form-horizontal" method="post" role="form">
    {% csrf_token %}
    <fieldset>
        <legend>{{ title }}</legend>

        {% for field in form %} {% if field.errors %}
        <div class="form-group">
            <label class="control-label col-sm-2">{{ field.label }}</label>
            <div class="controls col-sm-10">
                {{ field }}
                <p class="formError">
                    {% for error in field.errors %}{{ error }}{% endfor %}
                </p>
            </div>
        </div>
        {% else %}
        <div class="form-group">
            <label class="control-label col-sm-2">{{ field.label }}</label>
            <div class="controls col-sm-10">
                {{ field }} {% if field.help_text %}
                <p class="help-inline"><small>{{ field.help_text }}</small></p>
                {% endif %}
            </div>
        </div>
        {% endif %} {% endfor %}
    </fieldset>

    <div class="form-actions" style="margin-left: 150px; margin-top: 30px;">
        <button type="submit" class="btn btn-primary">Submit</button>
    </div>
</form>

子类ModelChoiceField并覆盖label_from_instance以显示名和姓。

from django.forms import ModelChoiceField

class UserChoiceField(ModelChoiceField):
    def label_from_instance(self, obj):
        return "%s %s" % (obj.first_name, obj.last_name)

然后使用模型表单中的选择字段。

from django import forms
from django.contrib.auth.models import User

class MyModelForm(forms.ModelForm):
    user = UserChoiceField(queryset=User.objects.all())
    ...
链接地址: http://www.djcxy.com/p/56535.html

上一篇: Can we format as to how the Model Form displays in Django on template

下一篇: Question On Django Form Models