{% extends 'mkt/base.html' %} {% set title = _('Payment Settings') %} {% block title %}{{ mkt_page_title(title) }}{% endblock %} {% macro currency_form() %}

{% trans %} Choose the currency you'd like to use for these pre-approved payments: {% endtrans %}

{{ currency.currency.errors }} {{ currency.currency }} {% endmacro %} {% block content %} {{ mkt_breadcrumbs(product, [(url('account.settings'), _('Account Settings')), (None, _('Payment'))]) }}

{{ title }}

{% include 'account/includes/nav.html' %}
{% if preapproval.paypal_key %}
{{ csrf() }}

{% trans %} Your payment pre-approval is enabled. {% endtrans %}

{% trans %} All future app purchases will be automatically charged to your PayPal account. To cancel this agreement at any time return to this page. {% endtrans %}

{% if waffle.switch('currencies') %}
{{ csrf() }} {{ currency_form() }}
{% endif %} {% else %}
{{ csrf() }}

{% trans %} Setting up PayPal pre-approval allows you to buy apps with one click from the Marketplace. They also allow you to use in-app purchases that go through this site. {% endtrans %}

{% if waffle.switch('currencies') %} {{ currency_form() }} {% endif %}

{% trans %} You can cancel pre-approval at any time by returning to this page. {% endtrans %}

{% endif %}
{% endblock %}