{% for topResearch in topReseaches %}
{% if topResearch.arabicTitle is defined %}
{% set title = (app.request.locale == 'ar')? topResearch.arabicTitle:topResearch.englishTitle %}
{% else %}
{% set title = (app.request.locale == 'ar')? topResearch.arabicFullTitle:topResearch.englishFullTitle %}
{% endif %}
{% if topResearch.arabicPublisher is defined %}
{% set publisher = topResearch.arabicPublisher %}
{% else %}
{% set publisher = topResearch.publisher.arabicFullName %}
{% endif %}
{% if topResearch.arabicCategory is defined %}
{% set category = topResearch.arabicCategory %}
{% else %}
{% set category=topResearch.researchCategory.arabicFullName %}
{% endif %}