Blame view

flaskr/templates/email/run_completed.html 355 Bytes
3e6505e2   Antoine Goutenoir   Add content to th...
1
2
3
4
5
6
{% extends "email/base.html" %}

{% block content %}
<p>
    Good news!

85ddfda9   Antoine Goutenoir   Improve the "run ...
7
8
9
10
11
12
    The run
{% if estimation.run_name %}
    <strong>"{{ estimation.run_name }}"</strong>
{% endif %}
    <code>{{ estimation.public_id }}</code>
    has completed successfully.
3e6505e2   Antoine Goutenoir   Add content to th...
13
14

    It is
85ddfda9   Antoine Goutenoir   Improve the "run ...
15
    <strong><a href="{{ estimation.link }}">available here</a></strong>.
3e6505e2   Antoine Goutenoir   Add content to th...
16
17
</p>
{% endblock %}