eventcally/project/templates/email/verification_request_notice.html
2023-06-02 12:32:08 +02:00

6 lines
349 B
HTML

{% extends "email/layout.html" %}
{% from "_macros.html" import render_email_button %}
{% block content %}
<p>{{ _('There is a new verification request that needs to be reviewed.') }}</p>
{{ render_email_button(url_for('admin_unit_verification_request_review', id=request.id, _external=True), _('Click here to review the request')) }}
{% endblock %}