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

System Configuration

{% if error %}

{{error}}

{% endif %}
{% if redirectVal=="Channel"%}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_channel in channelList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Channel Name Status Edit Delete
{{loop.index}} {{each_channel.name}} {{each_channel.actionText}}
{% if redirectVal=="TransactionType"%}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_transaction in transactionTypeList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Transaction Type Code Status Edit Delete
{{loop.index}} {{each_transaction.transactionType}} {{each_transaction.code}} {{each_transaction.actionText}}
{% if redirectVal=="OperationType"%}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_operation_type in operationTypeList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Operation Type Status Edit Delete
{{loop.index}} {{each_operation_type.name}} {{each_operation_type.actionText}}
{% if redirectVal=="Operation"%}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_operation in operationList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Operation Name Operation Type Operation Auth User Type Channel Description Code Is UI Is MakerChecker Status Edit Delete
{{loop.index}} {{each_operation.operationName}} {{each_operation.operationTypeName}} {{each_operation.operationAuth}} {{each_operation.userTypeName}} {{each_operation.channelName}} {{each_operation.description}} {{each_operation.code}} {% if each_operation.isUI == True %} ✓ {% else %} ✗ {% endif %} {% if each_operation.isMakerChecker == True %} ✓ {% else %} ✗ {% endif %} {{each_operation.actionText}}
{% if redirectVal=="ErrorDefination"%}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_error in errorList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Error Code Error message Type Description Status Edit Delete
{{loop.index}} {{each_error.errorCode}} {{each_error.errorMessage}} {{each_error.typeId}} {{each_error.description}} {{each_error.actionText}}
{%endblock%}