{% extends 'memberapp_users/layout.html' %} {% block head %} {% endblock %} {% block title %}Verify your membership application{% 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 view_code == 1 %} Back
{% endif %}

{{user.prefix or ''}}{{user.full_name or ''}}

{% if user.dob %}
{{user.dob.strftime('%d-%m-%Y')}}
{% else %}
-
{% endif %}
{{user.gender or '-'}}
{{user.email or '-'}}
{% if user.mobile: %}
{{user.mobile}}
{% else %}
-
{% endif %}
{% if user.whatsapp_number %}
{{user.whatsapp_number}}
{% else %}
-
{% endif %}
{% if society_key in Helper.AiosMembershipNumber: %}
{{user.aios_membership_number or '-'}}
{% endif %}
{{user.mc_number or '-'}}
{{user.mc_state or '-'}}
{{user.address1 or '-'}}
{{user.address2 or ''}}
{{user.address3 or ''}}
{% if user.district %} {% if user.district == "Others" %}
{{user.other_districts}}
{% else %}
{{user.district}}
{% endif %} {% else %}
-
{% endif %}
{% if user.city: %}
{{user.city}}
{% else %}
-
{% endif %}
{% if user.pincode %}
{{user.pincode}}
{% else %}
-
{% endif %}
{{user.state_name or '-'}}
{{user.country_name or '-'}}
{% if society_id|int in(3,10) and user.gov_proof_type : %}
{{user.gov_proof_id or ''}}

{% endif %} {% if datas|length != 0: %}

Qualification/Fellowship

{% for qualification in datas %} {% endfor %}
SNo Qualification/Fellowship From Passed Out Institution/University
{{loop.index}} {{qualification.qualification or ''}} {{qualification.year_from or ''}} {{qualification.year_passing or ''}} {{qualification.institution or ''}}

{% endif %}
{% if user_training|length != 0: %}

Training in endoscopic surgery/procedures

{% for training in user_training %} {% endfor %}
SNo Institution From(Date) Duration Teacher
{{loop.index}} {{training.institution or ''}} {{training.from_date or ''}} {{training.duration or ''}} {{training.teacher or ''}}

{% endif %} {% if data|length != 0: %}

Experience

{% if society_id|int == 3 %} {% endif %} {% for work in data %} {% if society_id|int == 3 %} {% endif %} {% if work.work_until==0 %} {% else %} {% endif %} {% endfor %}
SNo Institution/Hospital typePosition TypeStatus Work Since Work Until Institution/Hospital
{{loop.index}} {{work.work_type or ''}}{{work.position_type or ''}}{{work.work_status or ''}} {{work.work_since or ''}} {{work.work_until or ''}}{{work.work_place or ''}}

{% endif %} {% if user_publication|length != 0: %}

Publication

{% for pubdata in user_publication %} {% endfor %}
SNo Author type Description
{{loop.index}} {{pubdata.author_type or ''}} {{pubdata.author_description or ''}}

{% endif %} {% if user_additional : %}

Fellowship/ Senior Residency in a Glaucoma

{% if user_additional and user_additional[0]['is_any_fellowship'] == "yes" %}
{% for row in user_additional %} {% endfor %}
SNo Fellowship Training Place Institution Fellowship Start Date Fellowship End Date
{{loop.index}} {{row.any_fellowship_place_training or ""}} {{row.institution or ""}} {{row.fellowship_start_date or ""}} {{row.fellowship_end_date or ""}}
{% else %}
No Fellowship Training
{% endif %} {% endif %}
{% if user.type_of_practice :%}

Type of Practice and Practice Percentage

Type of Practice Practice Percentage
{{user.type_of_practice}} {{user.practice_consists_percentage}}
{% endif %}
{% if othersociety|length != 0: %}

Membership of other Associations/Societies

{% for row in othersociety %} {% endfor %}
SNo Associations/Society Membership No
{{loop.index}} {{row.other_society_name or ""}} {{row.other_membership_no or ""}}
{% endif %} {% if image|length != 0: %}

Attachment

{% for user_attach in image %}
{{user_attach.attach_type}}
{% if user_attach.attach_file_name %} {% set src= user_attach.attach_path|string+"/"+user_attach.attach_file_name|string %} {% if ".pdf" in user_attach.attach_file_name :%} {% else %} {{user_attach.attach_type}} {% endif %} {% else %} {% set src= "" %} {{user_attach.attach_type}} {% endif %}
{% endfor %}
{% endif %}
{% for prosec in prosec_data %}
{% if prosec.email is not none: %} {% else %} {% endif %} {% if prosec.mobile is not none: %} {% else %} {% endif %}

{{prosec.type}}

Full Name: {{prosec.prefix or ''}}{{prosec.full_name or ''}}
Membership Number: {{prosec.membership_no or ''}}
Email id:{{Helper.email_mask(prosec.email)}}
Mobile Number:{{Helper.mobile_mask(prosec.mobile)}}
City: {{prosec.city or ''}}
{% endfor %}

{% if member.display_name: %}
{% endif %}
{% if view_code == 0 %} {% if user.status_id == societyData['ms_rejected_status_id'] %}
Back To Edit {% if societyData['paymentgateway_appmaster_id']: %} Submit {% else %} {% endif %}
{% else %} {% if societyData['terms_condition'] : %}
{{societyData['terms_condition']|safe}}
{% endif %}
Back To Edit {% if societyData['member_approve_type'] == "before payment" : %} {% else %} {% endif %}
{% endif %} {% endif %}
{% endblock %}