chrono/chrono/agendas/templates/agendas/event_notification_body.html

17 lines
412 B
HTML

{% extends "emails/body_base.html" %}
{% load i18n %}
{% block content %}
<p>{% trans "Hi," %}</p>
<p>
{% blocktrans trimmed %}
You have been notified because the status of event "{{ event }}" has changed.
{% endblocktrans %}
</p>
{% with _("View event") as button_label %}
{% include "emails/button-link.html" with url=event_url label=button_label %}
{% endwith %}
{% endblock %}