1. ホーム
  2. python

[解決済み] Django フォーム - ラベルを設定する

2023-07-22 15:48:05

質問

他の2つのフォームを継承したフォームがあります。私のフォームでは、親フォームの1つで定義されたフィールドのラベルを変更したいのです。これをどのように行うか、どなたかご存知ですか?

私はそれを私の __init__ で行おうとしていますが、quot;'RegistrationFormTOS' object has no attribute '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

どのように解決するのですか?

を使用する必要があります。

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

最初にスーパーコールを使用することに注意してください。