* fixes created timestamp in detail views where modified needs to be displayed
* adds fallback timestamp if data has not been edited, yet --> show created timestamp
* fixes bug where deleting of certain data didn't redirect to the index view
* adds quality_check() method for EMA, needed for recording
* adds all functions which are provided for compensations to EMA
* adds/updates translations
This commit is contained in:
mipel
2021-08-19 13:44:06 +02:00
parent 510d77422a
commit 5c0b1c412d
18 changed files with 717 additions and 18 deletions

View File

@@ -141,7 +141,7 @@ def remove_view(request: HttpRequest, id: str):
return form.process_request(
request=request,
msg_success=_("Compensation removed"),
redirect_url="",
redirect_url=reverse("compensation:index"),
)