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

Country Master

{% if error %}

{{error}}

{% endif %}
{% if redirectval=="Region" %}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_region in regionsList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Region Name Region Type Status Edit Delete
{{loop.index}} {{each_region.regionName}} {{each_region.regionType}} {{each_region.actionText}}
{{ pagination.info }} {{ pagination.links }}
{% if redirectval=="Country" %}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_country in countriesList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Country Name Region Name Regex Country Code Flag Status Edit Delete
{{loop.index}} {{each_country.countryName}} {{each_country.regionName}} {{each_country.regex}} {{each_country.countryCode}} {{each_country.actionText}}
{{ countryPagination.info }} {{ countryPagination.links }}
{% if redirectval=="State" %}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_state in statesList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No State Name Country Name Status Edit Delete
{{loop.index}} {{each_state.stateName}} {{each_state.countryName}} {{each_state.actionText}}
{{ statePagination.info }} {{ statePagination.links }}
{% if redirectval=="Cities" %}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_city in citiesList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No City Name State Name Status Edit Delete
{{loop.index}} {{each_city.cityName}} {{each_city.stateName}} {{each_city.actionText}}
{{ cityPagination.info }} {{ cityPagination.links }}
{% if redirectval=="Block" %}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_block in blocksList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Block/PO Name City Name Status Edit Delete
{{loop.index}} {{each_block.name}} {{each_block.cityName}} {{each_block.actionText}}
{{ blockPagination.info }} {{ blockPagination.links }}
{% if redirectval=="Pincode" %}
{% else %}
{% endif %}
Export CSV CSV download
{% for each_pincode in pincodesList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Pincode Block/PO Name Latitude Longitude Status Edit Delete
{{loop.index}} {{each_pincode.pincode}} {{each_pincode.blockName}} {{each_pincode.latitude}} {{each_pincode.longitude}} {{each_pincode.actionText}}
{{ pincodePagination.info }} {{ pincodePagination.links }}
{%endblock%}