{% if search %}{% trans 'Results for:' %} {{search}}{% else %}{% trans 'All videos' %}{% endif %}
{% for content in results %}
{% if forloop.counter|divisibleby:3 %}
{% thumbnail content.image "320x240" format="PNG" crop="center" as im %}{% endthumbnail %}
{% if content.title|length > 69 %}{{content.title|slice:":69"}}...{% else %}{{content.title}}{% endif %}
{% trans 'Duration:' %} {{content.duration|str_duration:"h"}}
{% endif %}
{% endfor %}
{% if results.has_other_pages %}
{% endif %}