From 402dbce153639668d47db00fdc7a0479d9ebc3f6 Mon Sep 17 00:00:00 2001 From: Arnaud Bos Date: Sun, 18 Sep 2011 23:50:14 +0200 Subject: [PATCH] Merge mistake, my bad - Restore ProjectForm.password as a PasswordField and not TextField --- budget/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/budget/forms.py b/budget/forms.py index 33d7b38..16fa0d6 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -63,6 +63,7 @@ class EditProjectForm(Form): class ProjectForm(EditProjectForm): id = TextField("Project identifier", validators=[Required()]) + password = PasswordField("Private code", validators=[Required()]) submit = SubmitField("Create the project") def validate_id(form, field):