{% 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.membership_no: %}

Membership Number:{{user.membership_no}}

Member Type:{{member.member_type or ""}}

{% if user.updated_at: %}

Last Modified On:{{user.updated_at.strftime('%d-%m-%Y %H:%M') or ""}}

{% endif %} {% if user.joined_at: %}

Approved On:{{user.joined_at.strftime('%d-%m-%Y %H:%M') or ""}}

{% endif %} {% if member.approved_rejected_by: %} {% if user.status_id == societyData['ms_rejected_status_id']: %}

Rejected by:{{member.approved_rejected_by or ''}}

{% else %}

Approved by:{{member.approved_rejected_by or ''}}

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

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

{% else %}

{{user.full_name or ''}}

{% endif %}
{% if user.dob %}
{{user.dob.strftime('%d-%m-%Y')}}
{% else %}
-
{% endif %}
{{user.gender or '-'}}
{{user.email or '-'}}
{{user.mobile or '-'}}
{{user.whatsapp_number or '-'}}
{% if society_key in Helper.AadhaarNumber: %}
{{user.aadhaar_number or '-'}}
{% endif %} {% if society_key in Helper.AiosMembershipNumber: %}
{{user.aios_membership_number or '-'}}
{% endif %}
{{user.mc_number or '-'}}
{{user.mc_state or "-"}}
{% if user.address1 or user.address2 or user.address3: %}
{{user.address1 or ""}}
{% if user.address2: %}{{user.address2}}{% else %} {% endif %}
{% if user.address3: %}{{user.address3}}{% else %} {% endif %}
{% else %}
-
{% endif %}
{{user.district or '-'}}
{{user.city or '-'}}
{{user.pincode or '-'}}
{{user.state_name or '-'}}
{{user.country_name or '-'}}
{% if Helper.HospitalAddress.get(society_key,None) %}
{% if user.hos_address1 or user.hos_address2 or user.hos_address3: %}
{{user.hos_address1 or ""}}
{% if user.hos_address2: %}
{{user.hos_address2}}
{% endif %} {% if user.hos_address3: %}
{{user.hos_address3}}
{% endif %} {% else %}
-
{% endif %}
{% endif %}

{% if datas: %}

Qualification/Fellowship

{% for qualification in datas %} {% endfor %}
SNo Qualification/Fellowship From Passing Out Institution/University
{{loop.index}} {{qualification.qualification or ""}} {{qualification.year_from or ""}} {{qualification.year_passing or ""}} {{qualification.institution or ""}}
{% endif %}
{% if user_training: %}

Training in endoscopic surgery/procedures

{% for training_data in user_training %} {% endfor %}
SNo Institution From(Date) Duration Teacher
{{loop.index}} {{training_data.institution or ""}} {{training_data.from_date.strftime('%d-%m-%Y') or ""}} {{training_data.duration or ""}} {{training_data.teacher or ""}}
{% endif %}
{% if data: %}

Experience

{% if society_id|int == 3 %} {% endif %} {% for work in data %} {% if society_id|int == 3 %} {% 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 ""}} {% endif %} {{work.work_status or ""}} {{work.work_since or ""}} {{work.work_until or ""}}{{work.work_place or ""}}

{% endif %} {% if user_other_society: %}

Membership of other Associations/Societies

{% for row in user_other_society %} {% endfor %}
SNo Associations/Society Membership No
{{loop.index}} {{row.other_society_name or ""}} {{row.other_membership_no or ""}}

{% endif %} {% if image : %}

Attachment

{% for user_attach in image %} {% if user_attach.attach_type_id == Helper.FellowshipAttachId1.get(society_key,None) or user_attach.attach_type_id == Helper.FellowshipAttachId2.get(society_key,None) : %}
{{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 or ".PDF" in user_attach.attach_file_name :%} {% else %} {{user_attach.attach_type}} {% endif %} {% else %} {% set src= "" %} {{user_attach.attach_type}} {% endif %}
{% endif %} {% endfor %}
{% endif %}


{% endblock %} {% block script %} {% endblock %}