#86 Edit payment

* adds button for payment editing
* adds new edit form payment editing
* adds tests for views and workflow
This commit is contained in:
2022-02-09 10:29:34 +01:00
parent cb6a2d4d91
commit 78b4dce64d
12 changed files with 462 additions and 114 deletions

View File

@@ -12,4 +12,5 @@ app_name = "pay"
urlpatterns = [
path('<id>/new', new_payment_view, name='new'),
path('<id>/remove/<payment_id>', payment_remove_view, name='remove'),
path('<id>/edit/<payment_id>', payment_edit_view, name='edit'),
]