mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
5e63a5034b
* web.py contains the controllers (also called views) + url definitions * models.py contains the models * forms.py contains the forms * utils.py contains a set of utility fonctions to ease the dev. process
24 lines
850 B
Python
24 lines
850 B
Python
from flaskext.wtf import *
|
|
|
|
# define forms
|
|
class CreationForm(Form):
|
|
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")
|
|
|
|
|
|
class AuthenticationForm(Form):
|
|
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")
|
|
|