Django表单 - 设置标签

Teh*_*One 66 python django inheritance django-forms

我有一个继承自其他两种形式的表格.在我的表单中,我想更改在其中一个父表单中定义的字段的标签.有谁知道如何做到这一点?

我正在尝试在我的网站上执行此操作__init__,但它会抛出一个错误,指出"'RegistrationFormTOS'对象没有属性'email'".有谁知道我怎么做到这一点?

谢谢.

这是我的表单代码:

from django import forms
from django.utils.translation import ugettext_lazy as _
from registration.forms import RegistrationFormUniqueEmail
from registration.forms import RegistrationFormTermsOfService

attrs_dict = { 'class': 'required' }

class RegistrationFormTOS(RegistrationFormUniqueEmail, RegistrationFormTermsOfService):
    """
    Subclass of ``RegistrationForm`` which adds a required checkbox
    for agreeing to a site's Terms of Service.

    """
    email2 = forms.EmailField(widget=forms.TextInput(attrs=dict(attrs_dict, maxlength=75)), label=_(u'verify email address'))

    def __init__(self, *args, **kwargs):
        self.email.label = "New Email Label"
        super(RegistrationFormTOS, self).__init__(*args, **kwargs)

    def clean_email2(self):
        """
        Verifiy that the values entered into the two email fields
        match. 
        """
        if 'email' in self.cleaned_data and 'email2' in self.cleaned_data:
            if self.cleaned_data['email'] != self.cleaned_data['email2']:
                raise forms.ValidationError(_(u'You must type the same email each time'))
        return self.cleaned_data
Run Code Online (Sandbox Code Playgroud)

小智 126

你应该使用:

def __init__(self, *args, **kwargs):
    super(RegistrationFormTOS, self).__init__(*args, **kwargs)
    self.fields['email'].label = "New Email Label"
Run Code Online (Sandbox Code Playgroud)

首先请注意您应该使用超级呼叫.


Mar*_*elo 36

以下是覆盖默认字段的示例:

from django.utils.translation import ugettext_lazy as _

class AuthorForm(ModelForm):
    class Meta:
        model = Author
        fields = ('name', 'title', 'birth_date')
        labels = {
            'name': _('Writer'),
        }
        help_texts = {
            'name': _('Some useful help text.'),
        }
        error_messages = {
            'name': {
                'max_length': _("This writer's name is too long."),
            },
        }
Run Code Online (Sandbox Code Playgroud)

  • 这仅适用于ModelForm.不是表格 (5认同)

Mat*_*all 8

您可以通过'fields'字典访问表单中的字段:

self.fields['email'].label = "New Email Label"
Run Code Online (Sandbox Code Playgroud)

这样您就不必担心与表单类方法存在名称冲突的表单字段.(否则你不能有一个名为'clean'或'is_valid'的字段.)直接在类体中定义字段主要是为了方便.


kie*_*nnt 8

label定义表单时,可以将其设置为字段的属性.

class GiftCardForm(forms.ModelForm):
    card_name = forms.CharField(max_length=100, label="Cardholder Name")
    card_number = forms.CharField(max_length=50, label="Card Number")
    card_code = forms.CharField(max_length=20, label="Security Code")
    card_expirate_time = forms.CharField(max_length=100, label="Expiration (MM/YYYY)")

    class Meta:
        model = models.GiftCard
        exclude = ('price', )
Run Code Online (Sandbox Code Playgroud)

  • 这个答案的问题在于它没有解释如何更改“在其中一个父表单中定义的字段的标签”——父表单是重要的一点。 (2认同)
  • 它对我不起作用... `__init__() 有一个意外的关键字参数'label'` (2认同)