Payments add modal form
* adds help texts to add payment form * adds removing button for payments * refactors user fetching into BaseForm * adds generic RemoveModalForm which is intended to be used for every modal form which shall remove something * adds translations * removes unused html * prepares payment amount field to be able to process german inputs like '1.000,50' which is not the international default
This commit is contained in:
@@ -22,7 +22,7 @@ urlpatterns = [
|
||||
path('pay/<intervention_id>/new', new_payment_view, name='pay-new'),
|
||||
path('pay/<id>', open_view, name='pay-open'),
|
||||
path('pay/<id>/edit', edit_view, name='pay-edit'),
|
||||
path('pay/<id>/remove', remove_view, name='pay-remove'),
|
||||
path('pay/<id>/remove', payment_remove_view, name='pay-remove'),
|
||||
|
||||
# Eco-account
|
||||
path("acc/", account_index_view, name="acc-index"),
|
||||
|
||||
Reference in New Issue
Block a user