{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Conferences" %}{% endblock %} {% block content %}

{% trans "Conferences" %}

{% trans "International conferences and academic events attended by Munavvarkhon Mukhitdinova." %}

{% if conferences %}
{% for conference in conferences %}

{{ conference.title }}

{{ conference.get_conference_type_display }}
{{ conference.location }} {{ conference.date|date:"M d, Y" }} {{ conference.organizer }}
{% if conference.paper_title %}

{% trans "Paper" %}: {{ conference.paper_title }}

{% endif %}

{% trans "Role" %}: {{ conference.role }}

{% if conference.link %}

{% trans "Conference Link" %}

{% endif %}
{% endfor %}
{% else %}

{% trans "No conferences found." %}

{% endif %}
{% endblock %}