{{ media.title|truncate(length=55, killwords=True) }}
{% if media_type == 'image' %}
{% else %}
{{ generate_video(media) }}
{% endif %}
{{ _('Description') }}
{{ media.description|wiki_to_html }}
{% if media_type == 'image' %}
{{ _('Articles') }}
{% set documents = media.documents(request.user) %}
{% if documents %}
{% endif %}
{{ _('The following articles include this image:') }}
-
{% for doc in documents %}
- {{ doc.title }} {% endfor %}
{{ _('This image is not included in any articles.') }}
{% endif %}