Remove form renaming

* renames new remove modal forms to match a more coherent style
This commit is contained in:
2022-02-08 13:31:40 +01:00
parent 51a1652baa
commit a56f202e7f
10 changed files with 34 additions and 34 deletions

View File

@@ -103,7 +103,7 @@ class NewPaymentForm(BaseModalForm):
return pay
class PaymentRemoveModalForm(RemoveModalForm):
class RemovePaymentModalForm(RemoveModalForm):
""" Removing modal form for Payment
Can be used for anything, where removing shall be confirmed by the user a second time.
@@ -235,7 +235,7 @@ class NewStateModalForm(BaseModalForm):
raise NotImplementedError
class CompensationStateRemoveModalForm(RemoveModalForm):
class RemoveCompensationStateModalForm(RemoveModalForm):
""" Removing modal form for CompensationState
Can be used for anything, where removing shall be confirmed by the user a second time.
@@ -252,7 +252,7 @@ class CompensationStateRemoveModalForm(RemoveModalForm):
self.instance.remove_state(self)
class CompensationActionRemoveModalForm(RemoveModalForm):
class RemoveCompensationActionModalForm(RemoveModalForm):
""" Removing modal form for CompensationAction
Can be used for anything, where removing shall be confirmed by the user a second time.