eventcally/project/templates/email/event_report_notice.html
2021-09-07 22:48:11 +02:00

9 lines
386 B
HTML

{% extends "email/layout.html" %}
{% from "_macros.html" import render_email_button %}
{% block content %}
<p>{{ _('There is a new event report.') }}</p>
<p>{{ report['contact_name'] }}</p>
<p>{{ report['contact_email'] }}</p>
<p>{{ report['message'] }}</p>
{{ render_email_button(url_for('event', event_id=event.id, _external=True), _('Click here to view the event')) }}
{% endblock %}