{% load static %} {% include 'partials/head.html' %} {% include 'partials/header.html' %}
{% if customerFundingAccountsResponse and error_message is None %} {% if customerFundingAccountsResponse.total_results_count > 0 %} {% for fundingSourceObject in customerFundingAccountsResponse.funding_account_list %} {% endfor %}
Funding Account Id Account Number Account Type Account Subtype Delete
{{fundingSourceObject.id}} {% if fundingSourceObject.account_number %} {{fundingSourceObject.account_number}} {% else %} {% endif %} {% if fundingSourceObject.account_type %} {% if fundingSourceObject.account_type == "1" %} Bank {% elif fundingSourceObject.account_type == "2" %} Card {% elif fundingSourceObject.account_type == "6" %} Card {% elif fundingSourceObject.account_type == "bank" %} Bank {% elif fundingSourceObject.account_type == "card" %} Card {% else %} {{fundingSourceObject.account_type}} {% endif %} {% else %} {% endif %} {% if fundingSourceObject.account_subtype %} {% if fundingSourceObject.account_subtype == "1" %} Savings {% elif fundingSourceObject.account_subtype == "2" %} Checking {% elif fundingSourceObject.account_subtype == "3" %} Money Market {% elif fundingSourceObject.account_subtype == "4" %} Visa {% elif fundingSourceObject.account_subtype == "5" %} MasterCard {% elif fundingSourceObject.account_subtype == "6" %} American Express {% elif fundingSourceObject.account_subtype == "7" %} Discover {% elif fundingSourceObject.account_subtype == "14" %} Visa {% elif fundingSourceObject.account_subtype == "15" %} Master Card {% elif fundingSourceObject.account_subtype == "savings" %} Savings {% elif fundingSourceObject.account_subtype == "checking" %} Checking {% elif fundingSourceObject.account_subtype == "money_market" %} Money Market {% elif fundingSourceObject.account_subtype == "visa_credit" %} Visa Credit {% elif fundingSourceObject.account_subtype == "mastercard_credit" %} Mastercard Credit {% elif fundingSourceObject.account_subtype == "american_express_credit" %} american Express Eredit {% elif fundingSourceObject.account_subtype == "discover_credit" %} Discover Credit {% elif fundingSourceObject.account_subtype == "visa_debit" %} Visa Debit {% elif fundingSourceObject.account_subtype == "mastercard_debit" %} Mastercard Debit {% elif fundingSourceObject.account_subtype == "discover_debit" %} Discover Debit {% else %} {{fundingSourceObject.account_subtype}} {% endif %} {% else %} {% endif %}
{% else %} No Funding Accounts Added!! {% endif %} {% else %} {{error_message}} {% endif %}
{% include 'partials/footer.html' %}