{% extends 'base.html' %} {% load static %} {% block content %} {% include 'profile/header.html' %} {% include 'profile/drawer.html' %}

اطلاعات فردی

{% if person_private_info.pic %} تصویر {% else %} تصویر پیش‌فرض {% endif %}
{% load custom_tags %}
{% if is_family_role %} {% text_section "نام" person.user.first_name %} {% text_section "نام خانوادگی" person.user.last_name %} {% text_section "کد ملی" person.national_code %} {% text_section "نام پدر" person_private_info.father_name %}
{% text_section "نام فرزند" child_name %} {% else %} {% text_section "نام" person.user.first_name %} {% text_section "نام خانوادگی" person.user.last_name %}
{% text_section "وضعیت تحصیلی" person_edu.typee %} {% text_section "محل تولد" person_private_info.birth_place %} {% text_section "شماره تماس" person_private_info.phone %} {% text_section "آیا شاغل است؟" person_other_info.is_employed %} {% text_section "نام پدر" person_private_info.father_name %} {% text_section "جنسیت" person_private_info.gender %} {% text_section "وضعیت تاهل" person_other_info.wife_type %} {% text_section "میزان درآمد" person_other_info.salary_month %} {% text_section "مادر در قید حیات است" person_private_info.motherIsAlive %} {% text_section "پدر در قید حیات است" person_private_info.fatherIsAlive %} {% text_section "تحصیلات مادر" person_private_info.mother_grade %} {% text_section "تحصیلات پدر" person_private_info.father_grade %} {% text_section "شغل پدر" person_private_info.fatherJob %} {% text_section "شغل مادر" person_private_info.motherJob %} {% text_section "تعداد اعضای خانواده" person_other_info.family_count %} {% text_section "فرزند چندم" person_other_info.numberOfChild %} {% endif %}
{% endblock %}