{% extends 'back_office/bo_layout.html' %} {% block head %} {% endblock %} {% block title %}View Form{% endblock %} {% block content %}

{% for mesg in get_flashed_messages(category_filter=["successMsg"]) %}
×

right{{ mesg }}

{% endfor %} {% for mesg in get_flashed_messages(category_filter=["errorMsg"]) %}
×

wrong{{ mesg }}

{% endfor %}
{% if user.prefix and user.full_name: %}

{{user.prefix or ""}}{{user.full_name or ""}}

{% else %}

{{user.full_name or ''}}

{% endif %}
{{data.email or '-'}}
{{data.mobile or '-'}}
{{data.unique_id or '-'}}
{{data.amount or '-'}}
{{data.status or '-'}}
{{data.payment_id or '-'}}
{{data.created_at or '-'}}
{{data.payment_mode or '-'}}
{% if data.status == "Shipped" or data.status == "success" : %} {% if user.status !="success" and (data.status == "Shipped" or data.status == "success") : %} {% else %}

All Ready Membership Number Generated to this unique id - {{user.membership_no}}

Back {% endif %} {% else %}

Payment is not yet Completed.

Back {% endif %}
{% endblock %} {% block script %} {% endblock %}