2024-06-29 03:36:26 +00:00
|
|
|
{% extends 'default/templates/renderable/administerable.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-08-16 15:57:08 +00:00
|
|
|
|
|
|
|
{{ content.description.render() }}
|
|
|
|
|
|
|
|
{% if content.items_ordered|length and content.items_ordered[0].upload %}
|
|
|
|
|
2024-10-29 11:19:03 +00:00
|
|
|
{{ content.items_ordered[0].upload.render('inline') }}
|
2024-08-16 15:57:08 +00:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
2024-10-14 14:54:17 +00:00
|
|
|
{% if content.items_ordered|length > 1 %}
|
|
|
|
<div class="files">
|
|
|
|
{% for item in content.items_ordered[1:] %}
|
|
|
|
{% if item.upload %}
|
|
|
|
<div class="fileinfo">
|
|
|
|
<a class="download" href="{{ item.upload.url('download') }}" target="_blank">{{ item.upload.filename }}</a>
|
|
|
|
<span class="filesize">{{ item.upload.filesize|filesizeformat }}</span>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2024-06-29 03:36:26 +00:00
|
|
|
{% endblock %}
|