-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#3725] Started implementing the registration failures
- Loading branch information
Showing
4 changed files
with
91 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/openforms/emails/templates/emails/admin_failed_submissions_digest.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% load static i18n %} | ||
|
||
<p> | ||
{% blocktranslate %}Here is a summary of the failed registrations in the past 24 hours:{% endblocktranslate %} | ||
</p> | ||
<ul> | ||
{% for form in forms %} | ||
<li> | ||
- {{ form.form_title }} failed {{ form.failed_submissions_counter }} times between {{ form.initial_failure_timestamp }} and {{ initial_failure_timestamp }}. | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters