{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
{% block content %}
{% trans "Parent Object" %} |
{{ object.parent|linkify }} |
{% trans "Name" %} |
{{ object.name|placeholder }} |
{% trans "Description" %} |
{{ object.description|placeholder }} |
{% plugin_left_page object %}
{% trans "Filename" %} |
{{ object.filename }}
|
{% trans "Dimensions" %} |
{{ object.image_width }} × {{ object.image_height }} |
{% trans "Size" %} |
{{ object.size|filesizeformat }}
|
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}