{% extends 'base.html' %} {% load static i18n %} {% block title %}{% trans "Education" %} — Munavvarkhon Mukhitdinova{% endblock %} {% block description %}{% trans "Education background of Munavvarkhon Mukhitdinova, including doctoral, PhD, MBA and undergraduate studies." %}{% endblock %} {% block content %}

{% trans "Education" %}

{% trans "Academic background and educational qualifications." %}

{% if degrees_by_type.doctorate %}

{% trans "Doctoral Studies" %}

{% for education in degrees_by_type.doctorate %}
{% if education.diploma_image %} {{ education.title }} Diploma {% else %} Diploma {% endif %}

{{ education.title }}

{{ education.institution }}

{{ education.get_degree_display }}

{{ education.year }}

{{ education.country }}

{% if education.description %}

{{ education.description }}

{% endif %}
{% endfor %}
{% endif %} {% if degrees_by_type.masters %}

{% trans "Master's Studies" %}

{% for education in degrees_by_type.masters %}
{% if education.diploma_image %} {{ education.title }} Diploma {% else %} Diploma {% endif %}

{{ education.title }}

{{ education.institution }}

{{ education.get_degree_display }}

{{ education.year }}

{{ education.country }}

{% if education.description %}

{{ education.description }}

{% endif %}
{% endfor %}
{% endif %} {% if degrees_by_type.bachelors %}

{% trans "Bachelor's Studies" %}

{% for education in degrees_by_type.bachelors %}
{% if education.diploma_image %} {{ education.title }} Diploma {% else %} Diploma {% endif %}

{{ education.title }}

{{ education.institution }}

{{ education.get_degree_display }}

{{ education.year }}

{{ education.country }}

{% if education.description %}

{{ education.description }}

{% endif %}
{% endfor %}
{% endif %} {% if degrees_by_type.other %}

{% trans "Other Qualifications" %}

{% for education in degrees_by_type.other %}
{% if education.diploma_image %} {{ education.title }} Diploma {% else %} Diploma {% endif %}

{{ education.title }}

{{ education.institution }}

{{ education.get_degree_display }}

{{ education.year }}

{{ education.country }}

{% if education.description %}

{{ education.description }}

{% endif %}
{% endfor %}
{% endif %} {% if not education_items %}

{% trans "No education information available." %}

{% endif %}
{% endblock %}