Changed the date field of the transaction forms to set the default value in the view, but not the form, so that the default value is not set when it did not receive a value.

This commit is contained in:
2023-03-06 01:58:32 +08:00
parent bfb08cf5fc
commit 8d126e183f
2 changed files with 7 additions and 3 deletions

View File

@ -79,6 +79,7 @@ def show_add_transaction_form(txn_type: TransactionType) -> str:
form.validate()
else:
form = txn_op.form()
form.date.data = date.today()
return txn_op.render_create_template(form)