{% extends "../base.html" %} {% block title %}{{ file.filename }}{% end block %} {% block main %}
{% if file.is_image() %} {{ file.filename }} {% elif file.is_pdf() %}

{{ _("This PDF attachment could not be displayed.") }} {{ _("Click here to download") }}

{% end %} {{ _("Download") }} ({{ format_size(file.size) }})
{{ _("Filename") }}
{{ file.filename }}
{% if file.author %}
{{ _("Author") }}
{{ file.author }}
{% end %}
{{ _("Uploaded at") }}
{{ locale.format_date(file.created_at) }}
{% end block %}