aboutsummaryrefslogtreecommitdiff
path: root/budget/forms.py
diff options
context:
space:
mode:
authorArnaud Bos <arnaud.tlse@gmail.com>2011-11-01 13:07:32 +0100
committerArnaud Bos <arnaud.tlse@gmail.com>2011-11-01 13:07:32 +0100
commitd1b641b45e70e88c84ca8cd6f45ba953ee18da07 (patch)
tree4a8f5ff46df95758d2cc6968ce46b2887b9f4fc8 /budget/forms.py
parent7f805b63cad10b83833151460b24265608d10c3b (diff)
downloadihatemoney-mirror-d1b641b45e70e88c84ca8cd6f45ba953ee18da07.zip
ihatemoney-mirror-d1b641b45e70e88c84ca8cd6f45ba953ee18da07.tar.gz
ihatemoney-mirror-d1b641b45e70e88c84ca8cd6f45ba953ee18da07.tar.bz2
Correct "payed" --> "paid" typo. Fix #60. See #48 for spelling mistakes and typos
Diffstat (limited to 'budget/forms.py')
-rw-r--r--budget/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/budget/forms.py b/budget/forms.py
index 0af4994..7342762 100644
--- a/budget/forms.py
+++ b/budget/forms.py
@@ -102,7 +102,7 @@ class BillForm(Form):
date = DateField(_("Date"), validators=[Required()], default=datetime.now)
what = TextField(_("What?"), validators=[Required()])
payer = SelectField(_("Payer"), validators=[Required()], coerce=int)
- amount = DecimalField(_("Amount payed"), validators=[Required()])
+ amount = DecimalField(_("Amount paid"), validators=[Required()])
payed_for = SelectMultipleField(_("For whom?"),
validators=[Required()], widget=select_multi_checkbox, coerce=int)
submit = SubmitField(_("Send the bill"))