From 4e24edd5c9ca80eca7d97494f29b51c24f39ff29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Sureau?= Date: Fri, 5 Aug 2011 16:12:02 +0200 Subject: [PATCH] Submit button label changed in project creation form --- budget/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/budget/forms.py b/budget/forms.py index 9abbb16..8947f77 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -6,7 +6,7 @@ class ProjectForm(Form): id = TextField("Project identifier", validators=[Required()]) password = PasswordField("Password", validators=[Required()]) contact_email = TextField("Email", validators=[Required(), Email()]) - submit = SubmitField("Get in") + submit = SubmitField("Create the project") def save(self): """Create a new project with the information given by this form.