{% extends "partial/layout.html.twig" %} {% block title %}{{ t("share_file_title", "File Information") }}{% endblock %} {% block description %}{{ t("file_information_description", "Information about") }} {{ file.originalFilename }}{% endblock %} {% block keywords %}{{ file.originalFilename|lower }}{{ t("file_information_meta_keywords", ", share, information, file, upload, download, site") }}{% endblock %} {% block body %}

{{ t("share_file_title", "File Information") }}

{{ t("file_information_description", "Information about") }} "{{ file.originalFilename }}"

{{ file.extension }} {{ file.originalFilename }}
  • Filesize: {{ file.getFormattedFilesize() }}
  • Uploaded: {{ file.getFormattedUploadedDate() }}
  • Status: {{ file.getStatusLabel()|title }}
{% if file.status == 'active' %}

{{ t("download_urls", "download urls")|title }}

  • {{ t('file_page_link', 'File Page Link')|title }}
    {{ file.getFullShortUrl() }}
  • {{ t('html_code', 'HTML Code') }}
    {{ file.getHtmlLinkCode()|raw }}
  • {{ t('forum_code', 'forum code')|title }}
    {{ file.getForumLinkCode()|raw }}
  • {{ t('statistics_url', 'statistics url')|title }}
    {{ file.getStatisticsUrl() }}
{% endif %} {% if file.status == 'active' %}
{% endif %}
{% endblock %}