{% extends "foirequest/base.html" %} {% load i18n %} {% load static %} {% block body %}

{% blocktrans with name=attachment.name %}Attachment “{{ name }}”{% endblocktrans %}

{% blocktrans with title=foirequest.title message_url=message.get_absolute_url %} This attachment is part of the request ”{{ title }}”. {% endblocktrans %}

{% if attachment.can_embed %} {% if attachment.is_pdf %}
{% else %}
{% endif %} {% endif %}
{% if attachment.can_embed %}
{# expose direct links through redirects in case they get copied #} {% trans "Download original" %}
{% else %}

{% trans "This file cannot be previewed." %} {% trans "Download the file here." %}

{% endif %}
{% endblock %}