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

Fee Distribution Setting

{% if error %}

{{error}}

{% endif %}
{% for each_setting in feeDistributionSettingsList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Category Name Upline Comm Dist Status Edit Delete
{{loop.index}} {{each_setting.categoryName}} {% if each_setting.uplineCommDist == True %} ✔ {% else %} ✗ {% endif %} {{each_setting.actionText}}
{{ pagination.info }} {{ pagination.links }}
{%endblock%}