You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
564 B

{% load my_cms_tags %}
{% spaceless %}
{% if object.file.url %}
<span class="file">
<a href="{% if request.is_secure %}https{% else %}http{% endif %}://{{ request.get_host }}{{ object.file.url|replace_cms_page_media_url:"/download/" }}">
{% if object.get_icon_url %}{% endif %}
{% if object.title %}{{ object.title }}{% else %}{{ object.get_file_name }}{% endif %} {% if object.file_exists %}{#<span class="filesize">({{ object.file.size|filesizeformat }})</span>#}{% else %}(файл отсутствует!){% endif %}
</a>
</span>
{% endif %}
{% endspaceless %}