Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions documentcloud/templates/addons/email/base_disabled.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
{% extends "core/email/base.html" %}

{% block body %}

<p>
Your scheduled run of the Add-On {{ run.addon.name }} has not run
succesfully the last five times it was ran. We have therefore disabled the
scheduled run. <a href="{{ settings.DOCCLOUD_URL }}/add-ons/{{ run.addon.repository }}/{{ run.event.id }}/">View the scheduled run details here.</a>
</p>
{% if run.event.parameters.site %}
<p>
This scheduled run was monitoring: <a href="{{ run.event.parameters.site }}">{{ run.event.parameters.site }}</a>
</p>
{% endif %}
<p>
You may debug the issue
<a href="https://github.com/{{ run.addon.repository }}/actions/runs/{{ run.run_id }}/">
using the GitHub logs.
</a> Once fixed, you may re-enable it from the Add-On menu on
DocumentCloud. If you need assistance debugging, please ask on
<a href="https://www.muckrock.com/slack/">our Slack channel.</a>
</p>
<p>
{{ footer_content|urlize }}
</p>

{% endblock body %}
Loading