suivi/templates/mail/expense_report/paid.html.twig

20 lines
569 B
Twig

{% extends '@Core/mail/base.html.twig' %}
{% block css %}
<style>
a {color: #1ab5dc}
</style>
{% endblock %}
{% block body %}
<p style="text-align: center; margin-bottom: 20px">
<img src="{{ absolute_url(asset('build/images/tinternet.png')) }}" alt="Tinternet &amp; Cie" width="50">
</p>
<p>Le paiement pour la <a href="{{ show_url }}">note de frais #{{ entity.id }}</a> a été réalisé ☺️</p>
{% if message %}
<p>Message de {{ user.displayName }} : « {{ message|nl2br }} »</p>
{% endif %}
{% endblock %}