{% extends 'base.html' %} {% load i18n %} {% load mtp_common %} {% load send_money %} {% block page_title %}{% trans 'Enter amount to send' %} – {{ block.super }}{% endblock %} {% block content %}

{% trans 'Pay now by debit card' %} {% trans 'Enter amount to send' %}

{% csrf_token %} {% include 'govuk-frontend/components/error-summary.html' with form=form only %}
{% include 'mtp_common/forms/amount-field.html' with field=form.amount only %} {% if service_charged %}

{% blocktrans trimmed with charge_percentage=service_charge_percentage|format_percentage charge_fixed=service_charge_fixed|currency_format_pence %} The service charge is {{ charge_percentage }} of the amount you’re sending, plus {{ charge_fixed }}. {% endblocktrans %} {% trans 'This fee is charged by your card provider.' %}

{% blocktrans trimmed with sample_amount=sample_amount|currency_format sample_amount_total_charge=sample_amount|add_service_charge|currency_format %} For instance, if you want to send {{ sample_amount }}, you will be charged {{ sample_amount_total_charge }}. {% endblocktrans %}

{% trans 'Service charge' %}
{% trans 'Total to pay' %}
{% endif %}

{% endblock %}