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

Wallet Master

{% if error %}

{{error}}

{% endif %}
{% if redirectval=="Wallet" %}
{% else %}
{% endif %}
{% for each_wallet in walletsList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Wallet Name Code Description Status Edit Delete
{{loop.index}} {{each_wallet.walletName}} {{each_wallet.code}} {{each_wallet.description}} {{each_wallet.actionText}}
{% if pagination %} {% endif %}
{% if redirectval=="SourceOfFund" %}
{% else %}
{% endif %}
{% for each_source_of_fund in sourceOfFundsList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Source Name Category Name Rank Code Description Status Edit Delete
{{loop.index}} {{each_source_of_fund.sourceName}} {{each_source_of_fund.categoryName}} {{each_source_of_fund.rank}} {{each_source_of_fund.code}} {{each_source_of_fund.description}} {{each_source_of_fund.actionText}}
{% if pagination %} {% endif %}
{% endblock %}