{% if length >300 %}
{% if app.request.locale == "en" and research.englishAbstract != null and research.englishAbstract != ""%}
{{ research.englishAbstract[0:250] }}
{% else %}
{{ research.arabicAbstract[0:250] }}
{% endif %}
{% else %}
{% if app.request.locale == "en" and research.englishAbstract != null and research.englishAbstract != ""%}
{{ research.englishAbstract }}
{% else %}
{{ research.arabicAbstract }}
{% endif %}
{% endif %}
{% set break= false %}
{% set len= tags|length %}
{% if len > 0 %}
{% set threshold=5 %}
{% for i in range(0,len-1) %}
{% if tagSlug!="" %}
{% if i <= threshold %}
{{ tags[i] }}
{% elseif i > threshold %}
{% set break=true %}
{% endif %}
{% else %}
{% set threshold=threshold+1 %}
{% endif %}
{% endfor %}
{% if break %}
{{ 'المزيد..' }}
{% endif %}
{% endif %}
{% endfor %}