pdnew/themes/default/templates/renderable/upload.html

16 lines
527 B
HTML

{% extends 'default/templates/renderable/administerable.html' %}
{% block content %}
{% if not content.published %}
<span class="warning unpublished" title="This {{ content._lowerclass }} has NOT been published."></span>
{% endif %}
{% block fileinfo %}
<div class="fileinfo">
<a href="{{ content.url('raw') }}" target="_blank">{{ content.filename }}</a>
<span class="filesize">{{ content.filesize|filesizeformat }}</span>
</div>
{% endblock %}
{% endblock %}