2024-04-22 21:29:28 +00:00
|
|
|
{% extends 'default/templates/renderable/administerable.html' %}
|
2024-04-12 19:22:00 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2024-08-16 15:57:08 +00:00
|
|
|
|
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 %}
|
2024-08-16 15:57:08 +00:00
|
|
|
|
2024-04-12 19:22:00 +00:00
|
|
|
{% block fileinfo %}
|
|
|
|
<div class="fileinfo">
|
2024-10-14 14:54:17 +00:00
|
|
|
<a class="download" href="{{ content.url('download') }}" target="_blank">{{ content.filename }}</a>
|
2024-04-12 19:22:00 +00:00
|
|
|
<span class="filesize">{{ content.filesize|filesizeformat }}</span>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|