{% extends 'base.html' %} {% load static i18n %} {% block title %}{% trans "About" %} — Munavvarkhon Mukhitdinova{% endblock %} {% block description %}{% trans "About Munavvarkhon Mukhitdinova — academic and research profile." %}{% endblock %} {% block content %}

{% trans "About Me" %}

{% trans "Doctor of Science in Economics, Associate Professor with extensive experience in academic research and teaching." %}

{% trans "Specialized in digital economy, artificial intelligence, and big data analytics." %}

{% trans "Author of numerous scientific publications in Scopus-indexed journals." %}

{% trans "Participant in international research projects and conferences." %}

{% if metrics %}

{% trans "Research Metrics" %}

{{ metrics.h_index }} h-index
{{ metrics.citations }} {% trans "Citations" %}
{{ metrics.publications }} {% trans "Publications" %}
{% endif %} {% if education %}

{% trans "Education" %}

{% for edu in education %}

{{ edu.get_degree_display }} - {{ edu.title }}

{{ edu.institution }}, {{ edu.year }}

{% if edu.description %}

{{ edu.description }}

{% endif %}
{% endfor %}
{% endif %} {% if experiences %}

{% trans "Professional Experience" %}

{% for exp in experiences %}

{{ exp.position }}

{{ exp.institution }} ({{ exp.duration }})

{{ exp.description|truncatewords:20 }}

{% endfor %}
{% endif %} {% if skills %}

{% trans "Skills & Expertise" %}

{% for skill in skills %}
{{ skill.name }} {{ skill.get_category_display }}
{{ skill.proficiency }}%
{% endfor %}
{% endif %} {% if awards %}

{% trans "Awards & Honors" %}

{% for award in awards %}

{{ award.title }}

{{ award.awarding_body }}, {{ award.year }}

{% if award.description %}

{{ award.description }}

{% endif %}
{% endfor %}
{% endif %}
{% endblock %}