{% extends "base.html" %} {% block content %}

{{ title }}

{% if interwiki %}
{% endif %}
{% if file_info and file_info.proxied_url %}
{% set mediatype = file_info.get('mediatype', '') %} {% if mediatype in ['BITMAP', 'DRAWING'] %} {{ title }} {% elif mediatype == 'VIDEO' %} {% elif mediatype == 'AUDIO' %} {% else %} Download file {% endif %}
{% if file_info.user %} {% endif %} {% if file_info.timestamp %} {% endif %} {% if file_info.mime %} {% endif %} {% if file_info.width and file_info.height %} {% endif %} {% if file_info.size_str %} {% endif %}
Uploaded by {{ file_info.user }}
Upload date {{ file_info.timestamp }}
MIME type {{ file_info.mime }}
Dimensions {{ file_info.width }} × {{ file_info.height }} px
File size {{ file_info.size_str }}
{% elif not file_info or not file_info.proxied_url %}

This file could not be found or has no associated media.

{% endif %} {% if content %}
{{ content|safe }}
{% endif %}
{% if categories %}
{% for category in categories %} {{ category.title }} {% endfor %}
{% endif %} {% endblock %} {% block license %} {% if license %}

This content is licensed under the {{ license.title }}.

{% endif %} {% endblock %}