{% extends 'oscar/dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block title %} {% trans "Return funds to source account" %} #{{ account.id }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %} {% include 'accounts/dashboard/partials/account_detail.html' %}
{% if account.is_open %}
{% csrf_token %}

{% trans "Transaction" %}

{% if form.source_account %} {% include 'oscar/partials/form_field.html' with field=form.source_account %} {% endif %} {% include 'oscar/partials/form_field.html' with field=form.amount %} or {% trans "cancel" %}.
{% else %}

{% trans "This account's funds cannot be withdrawn." %}

{% endif %}
{% endblock dashboard_content %}