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

Profile Master

{% if error %}

{{error}}

{% endif %}
Export CSV CSV download {% for each_profile in profilelList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Profile Name Code User Type Signup Profile Status Edit Delete
{{loop.index}} {{each_profile.name}} {{each_profile.code}} {{each_profile.userTypeName}} {% if each_profile.signUpProfile == True %} ✓ {% else %} ✗ {% endif %} {{each_profile.actionText}}
{%endblock%}