diff options
| author | Frédéric Sureau <fred@milka.(none)> | 2011-07-26 16:03:00 +0200 |
|---|---|---|
| committer | Frédéric Sureau <fred@milka.(none)> | 2011-07-26 16:03:00 +0200 |
| commit | c7f9df985900c9daf2d79ad09e4434411adc474a (patch) | |
| tree | a7d46ac5dc25fb9594d83c2b22cb6c79f0dae222 /budget/forms.py | |
| parent | a3b49a231fac1341493960daecfdfe67901d4750 (diff) | |
| download | ihatemoney-mirror-c7f9df985900c9daf2d79ad09e4434411adc474a.zip ihatemoney-mirror-c7f9df985900c9daf2d79ad09e4434411adc474a.tar.gz ihatemoney-mirror-c7f9df985900c9daf2d79ad09e4434411adc474a.tar.bz2 | |
Check project id before authentication
Diffstat (limited to 'budget/forms.py')
| -rw-r--r-- | budget/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/budget/forms.py b/budget/forms.py index 367be94..0373da8 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -2,7 +2,7 @@ from flaskext.wtf import * from models import Project, Person # define forms -class CreationForm(Form): +class ProjectForm(Form): name = TextField("Project name", validators=[Required()]) id = TextField("Project identifier", validators=[Required()]) password = PasswordField("Password", validators=[Required()]) |
