date-poll-api/templates/emails/comment-notification.html.twig

23 lines
629 B
Twig
Raw Normal View History

2020-04-12 17:28:30 +02:00
{#[Framadate] Notification d'un sondage : TESSSSSSSSSST#}
2020-04-16 18:23:50 +02:00
{% extends 'email-base.html.twig' %}
2020-04-12 17:28:30 +02:00
{% block content %}
<strong>
{{ owner.pseudo }}
</strong>
vient de rédiger un commentaire.
<blockquote style="background: #dedede; padding: 1em 2em;">
<i>
{% autoescape %}
{{ comment.text }}
{% endautoescape %}
</i>
</blockquote>
<br>
Vous pouvez retrouver votre sondage avec le lien suivant :
2020-04-12 18:09:45 +02:00
<br>
2020-04-12 17:28:30 +02:00
{% include 'emails/partial/admin_link.html.twig' %}
2020-04-12 18:09:45 +02:00
<br>
2020-04-12 17:28:30 +02:00
{% include 'emails/partial/public_link.html.twig' %}
{% endblock %}