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

Registration Master

{% if error %}

{{error}}

{% endif %}
{% if redirectval=="Steps" %}
{% else %}
{% endif %}
{% for each_registration in registrationStepList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Step Name Label User Type Entity Type Rank Is Mandatory Is Signup Status Edit Delete
{{loop.index}} {{each_registration.stepName}} {{each_registration.label}} {{each_registration.userTypes}} {{each_registration.entityTypes}} {{each_registration.rank}} {% if each_registration.isMandatory == True %} ✔ {% else %} ✗ {% endif %} {% if each_registration.isSignup == True %} ✔ {% else %} ✗ {% endif %} {{each_registration.actionText}}
{% if redirectval=="Fields" %}
{% else %}
{% endif %}
{% for each_registration_field in registrationFieldsList %} {% endfor %} {% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}
S.No Field Type Label Step Name User Type Entity Type Web Regex Mobile Regex Rank Status Edit Delete
{{loop.index}} {{each_registration_field.fieldType}} {{each_registration_field.label}} {{each_registration_field.stepName}} {{each_registration_field.userTypes}} {{each_registration_field.entityTypes}} {{each_registration_field.webRegex}} {{each_registration_field.mobileRegex}} {{each_registration_field.rank}} {{each_registration_field.actionText}}
{% endblock %}