{% extends "./layout.html" %} {% block title %}Index{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Customers

{% if customers -%} {% for customer in customers %} {% set payment_method_names = [] %} {% for key,method in payment_methods %} {% set payment_method_names = payment_method_names.append(method) %} {% endfor %} {% endfor %}
Customer Name Telephone POC Name POC Email Country Sanctioned Business Number Verification Date Payment Method Actions
{{customer.customer_name}} {{customer.phone_number}} {{customer.poc_name}} {{customer.poc_email}} {{customer.hq_country}} {% if customer.sanctioned -%} Yes {% else %} No {%- endif %} {{customer.business_num}} {{customer.verification_date}} {{ payment_method_names[customer.payment_method_id - 1] }}
{%- endif %}

Customer Verification


Financial Verification



{% endblock %}