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

Tax Master

{% if error %}

{{error}}

{% endif %}
{% for each_tax_type in taxTypesList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Tax Type Name Type Primary Tax Secondary Tax Status Edit Delete
{{loop.index}} {{each_tax_type.taxTypeName}} {{each_tax_type.taxType}} {{each_tax_type.primaryTax}} {{each_tax_type.secondaryTax}} {{each_tax_type.actionText}}
{{ pagination.info }} {{ pagination.links }}
{% endblock %}