2011-07-23 18:45:40 +02:00
|
|
|
from flaskext.wtf import *
|
2011-07-23 20:36:13 +02:00
|
|
|
from models import Project, Person
|
2011-07-23 18:45:40 +02:00
|
|
|
|
|
|
|
# define forms
|
2011-07-26 16:03:00 +02:00
|
|
|
class ProjectForm(Form):
|
2011-07-23 18:45:40 +02:00
|
|
|
name = TextField("Project name", validators=[Required()])
|
|
|
|
id = TextField("Project identifier", validators=[Required()])
|
|
|
|
password = PasswordField("Password", validators=[Required()])
|
|
|
|
contact_email = TextField("Email", validators=[Required(), Email()])
|
|
|
|
submit = SubmitField("Get in")
|
|
|
|
|
2011-07-23 19:11:24 +02:00
|
|
|
def save(self):
|
|
|
|
"""Create a new project with the information given by this form.
|
|
|
|
|
|
|
|
Returns the created instance
|
|
|
|
"""
|
|
|
|
project = Project(name=self.name.data, id=self.id.data,
|
|
|
|
password=self.password.data,
|
|
|
|
contact_email=self.contact_email.data)
|
|
|
|
return project
|
|
|
|
|
2011-07-23 18:45:40 +02:00
|
|
|
|
|
|
|
class AuthenticationForm(Form):
|
2011-07-29 15:44:15 +02:00
|
|
|
id = TextField("Project identifier", validators=[Required()])
|
2011-07-23 18:45:40 +02:00
|
|
|
password = TextField("Password", validators=[Required()])
|
|
|
|
submit = SubmitField("Get in")
|
|
|
|
|
|
|
|
|
|
|
|
class BillForm(Form):
|
|
|
|
what = TextField("What?", validators=[Required()])
|
|
|
|
payer = SelectField("Payer", validators=[Required()])
|
|
|
|
amount = DecimalField("Amount payed", validators=[Required()])
|
|
|
|
payed_for = SelectMultipleField("Who has to pay for this?",
|
|
|
|
validators=[Required()])
|
|
|
|
submit = SubmitField("Add the bill")
|
|
|
|
|
2011-07-23 20:36:13 +02:00
|
|
|
|
|
|
|
class MemberForm(Form):
|
|
|
|
def __init__(self, project, *args, **kwargs):
|
|
|
|
super(MemberForm, self).__init__(*args, **kwargs)
|
|
|
|
self.project = project
|
|
|
|
|
|
|
|
name = TextField("Name", validators=[Required()])
|
|
|
|
submit = SubmitField("Add a member")
|
|
|
|
|
|
|
|
def validate_name(form, field):
|
|
|
|
if Person.query.filter(
|
|
|
|
Person.name == field.data and Person.project == self.project).all():
|
|
|
|
raise ValidationError("This project already have this member")
|