{# keywords #}
{% set tags = prompt.keywords %}
{% set tagSlug = [] %}
{% for tag in tags %}
{% if tag.slug is defined %}
{% set tagSlug = tagSlug|merge([tag.slug]) %}
{% endif %}
{% endfor %}
{% 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 %}
{{ tags[i] }}
{% endif %}
{% else %}
{% set threshold=threshold+1 %}
{% endif %}
{% endfor %}
{% if break %}
{{ 'المزيد..' }}
{% endif %}
{% endif %}
{# citations #}
{% if prompt.citations is defined %}
{{ 'study.citations'|trans }}
{% if prompt.citations|length >0 %}
{% for reference in prompt.citations %}
{% if not ( reference|first|lower in 'a'..'z' ) %}