{% extends 'emails/base_i18n.txt' %}

{% block subject -%}
    {% trans %}Payment inconsistency{% endtrans %}
{%- endblock %}

{% block header -%}
    {% trans title=event.title %}Dear manager of the event {{ title }},{% endtrans %}
{%- endblock %}

{% block body %}
{% filter dedent %}
    {% filter wordwrap(width=78, break_long_words=false) -%}
        {% trans id=registration.friendly_id, paid_amount=format_currency(amount, currency), expected_price=registration.render_price() %}
            It appears that the payment of the registration with ID {{ id }} has an incorrect
            amount of money (received {{ paid_amount }} while expecting {{ expected_price }}).
            Please, check with the registrant to see if there was some misunderstanding.
        {%- endtrans %}
    {%- endfilter -%}
{%- endfilter %}
{%- endblock %}
