* Added back comment

This commit is contained in:
DavidRThrashJr 2020-02-08 13:50:48 -05:00
parent b68692621c
commit 318b12af96

View file

@ -699,6 +699,7 @@ def delete_bill(bill_id):
@main.route("/<project_id>/edit/<int:bill_id>", methods=["GET", "POST"])
def edit_bill(bill_id):
# FIXME: Test this bill belongs to this project !
bill = Bill.query.get(g.project, bill_id)
if not bill:
raise NotFound()