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

27 lines
838 B
HTML
Raw Permalink Normal View History

{% extends 'default/templates/renderable/administerable.html' %}
{% block content %}
2024-10-22 15:02:22 +00:00
{% block hints %}
{% if not content.published %}
<span class="warning unpublished" title="This {{ content._lowerclass }} has NOT been published."></span>
{% endif %}
{% endblock %}
{% block fileview %}
{% endblock %}
{% block description %}
{% if content.description %}
<div class="description">{{ content.description.render('inline') }}</div>
{% endif %}
{% endblock %}
{% block fileinfo %}
<div class="fileinfo">
<a class="download" href="{{ content.url('download') }}" target="_blank">{{ content.filename }}</a>
<span class="filesize">{{ content.filesize|filesizeformat }}</span>
</div>
{% endblock %}
{% endblock %}