{% extends 'super_admin_templates/base.html' %} {% set path = "regions" %} {% set subpath = "kyc_master" %} {% block content %}

KYC Master

{% if error %}

{{error}}

{% endif %}
{% if redirectval == "Ekyc" %}
{% else %}
{% endif %}
Export CSV CSV download {% for each_ekyc in ekycList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No EKYC Name Code Ekyc Type Status Edit Delete
{{loop.index}} {{each_ekyc.name}} {{each_ekyc.code}} {{each_ekyc.ekycType}} {{each_ekyc.actionText}}
{% if redirectval == "Document" %}
{% else %}
{% endif %}
Export CSV CSV download {% for each_document in documentsList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Document Name Priority Has Expiry Is KYC Is Mandatory Status Edit Delete
{{loop.index}} {{each_document.name}} {{each_document.priority}} {% if each_document.hasExpiry == True %} ✓ {% else %} ✗ {% endif %} {% if each_document.isKYC == True %} ✓ {% else %} ✗ {% endif %} {% if each_document.isMandatory == True %} ✓ {% else %} ✗ {% endif %} {{each_document.actionText}}
{% if redirectval == "DocumentAttribute" %}
{% else %}
{% endif %}
Export CSV CSV download {% for each_attribute in attributesList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Attribute Name Document Name Field Type Is EKYC EKYC Code Label Max Size Max Width Priority Min Width Web Regex Mobile Regex Status Edit Delete
{{loop.index}} {{each_attribute.attributeName}} {{each_attribute.documentName}} {{each_attribute.fieldType}} {% if each_attribute.isKYC == True %} ✓ {% else %} ✗ {% endif %} {{each_attribute.ekycName}} {{each_attribute.label}} {{each_attribute.maxSize}} {{each_attribute.maxWidth}} {{each_attribute.priority}} {{each_attribute.minWidth}} {{each_attribute.webRegex}} {{each_attribute.mobileRegex}} {{each_attribute.actionText}}
{% if redirectval == "KycGroup" %}
{% else %}
{% endif %}
Export CSV CSV download {% for each_group in groupsList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No KYC Group Name Description Code Priority Status Edit Delete
{{loop.index}} {{each_group.name}} {{each_group.description}} {{each_group.code}} {{each_group.priority}} {{each_group.actionText}}
{% if redirectval == "KycGroupConfig" %}
{% else %}
{% endif %}
Export CSV CSV download {% for each_config in configsList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Document Name Document Group Name Status Edit Delete
{{loop.index}} {{each_config.documentName}} {{each_config.groupName}} {{each_config.actionText}}
{%endblock%}