{% load core_tags %}
{% for path, info in result.output_files.items %} {% if info.mimetype == 'application/pdf' or info.extension == 'pdf' or 'officedocument' in info.mimetype or 'opendocument' in info.mimetype or info.mimetype == 'application/epub+zip' or info.mimetype == 'application/msword' or info.mimetype == 'application/vnd.ms-excel' or info.mimetype == 'application/vnd.ms-powerpoint' or info.mimetype == 'text/markdown' or info.mimetype == 'text/x-markdown' or info.extension == 'epub' or info.extension == 'doc' or info.extension == 'docx' or info.extension == 'ppt' or info.extension == 'pptx' or info.extension == 'xls' or info.extension == 'xlsx' or info.extension == 'odt' or info.extension == 'ods' or info.extension == 'odp' or info.extension == 'rtf' or info.extension == 'md' or info.extension == 'markdown' %} {% if path|slice:':4' == 'all/' or path|slice:':14' == 'responses/all/' %} 📄{{ info.extension|upper }} {% endif %} {% endif %} {% endfor %}
{% for path, info in result.output_files.items %} {% if info.mimetype|slice:':6' == 'image/' %} {% if path|slice:':4' == 'all/' or path|slice:':14' == 'responses/all/' %} {% with image_path='responses/'|add:path %} {% if info.root_relative %} {% snapshot_preview_url snapshot path as image_url %} {% else %} {% snapshot_preview_url snapshot image_path as image_url %} {% endif %} {{ path }} {% endwith %} {% endif %} {% endif %} {% endfor %}