mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-01 02:32:23 +02:00
Add missing field description from #774
This commit is contained in:
parent
42dd2d6f7d
commit
8b2da3757c
1 changed files with 4 additions and 1 deletions
|
@ -104,7 +104,10 @@ class CalculatorStringField(StringField):
|
||||||
class EditProjectForm(FlaskForm):
|
class EditProjectForm(FlaskForm):
|
||||||
name = StringField(_("Project name"), validators=[DataRequired()])
|
name = StringField(_("Project name"), validators=[DataRequired()])
|
||||||
# If empty -> don't change the password
|
# If empty -> don't change the password
|
||||||
password = PasswordField(_("New private code"))
|
password = PasswordField(
|
||||||
|
_("New private code"),
|
||||||
|
description=_("Enter a new code if you want to change it"),
|
||||||
|
)
|
||||||
contact_email = StringField(_("Email"), validators=[DataRequired(), Email()])
|
contact_email = StringField(_("Email"), validators=[DataRequired(), Email()])
|
||||||
project_history = BooleanField(_("Enable project history"))
|
project_history = BooleanField(_("Enable project history"))
|
||||||
ip_recording = BooleanField(_("Use IP tracking for project history"))
|
ip_recording = BooleanField(_("Use IP tracking for project history"))
|
||||||
|
|
Loading…
Reference in a new issue