~widelands-dev/widelands-website/gaming_password

« back to all changes in this revision

Viewing changes to wlggz/forms.py

  • Committer: franku
  • Date: 2019-05-15 17:22:54 UTC
  • Revision ID: somal@arcor.de-20190515172254-21asea0vtbbyqipm
wording

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
class EditGGZForm(forms.ModelForm):
15
15
    password = forms.CharField(label=_(u'Online Gaming Password'),
16
16
                               widget=forms.PasswordInput(render_value=False), required=True)
17
 
    password2 = forms.CharField(label=_(u'Enter again'),
 
17
    password2 = forms.CharField(label=_(u'Enter the password again'),
18
18
                               widget=forms.PasswordInput(render_value=False), required=True)
19
19
 
20
20
    class Meta: