Blame view

flaskr/templates/email/run_failed.html 432 Bytes
3e6505e2   Antoine Goutenoir   Add content to th...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "email/base.html" %}

{% block content %}
<p>
    OH, SNAP!

    The run <code>{{ estimation.public_id }}</code> has failed.
</p>

<p>
    Here's an excerpt of the caught errors: <br>

    <pre style="color: darkred">
{{ estimation.errors }}
    </pre>

    <br>
    <br>

    You can know more
    <strong><a href="{{ base_url }}/estimation/{{ estimation.public_id }}.html">on its page</a></strong>.
</p>
{% endblock %}