{% extends 'emails/base.html' %}
{% block header_recipient -%}
{person_name}
{%- endblock %}
{% block body %}
{% block body_text %}
There is an agreement you are requested to sign for the event:
{{ event.title }}
{% block body_agreement_request %}
You can sign it on the following page:
{% endblock %}
{agreement_link}
{% endblock %}
{% if session %}
Best regards
{{ session.user.full_name }}
{% endif %}
{%- endblock %}
{% block footer_title %}Agreements{% endblock %}
{% block footer %}
{# Show default footer if sent from command line #}
{% if not session.user %}
{{ super() }}
{% endif %}
{% endblock %}