{% macro display_album(a, edit_mode) %} {% if a.file %} {% set img = a.get_download_url() %} {% elif a.children.filter(is_folder=False, is_moderated=True).exists() %} {% set img = a.children.filter(is_folder=False).first().as_picture.get_download_thumb_url() %} {% else %} {% set img = static('core/img/sas.jpg') %} {% endif %}
{% if not a.is_moderated %}
 
{% trans %}To be moderated{% endtrans %}
{% else %}
{{ a.name }}
{% endif %}
{% if edit_mode %} {% endif %}
{% endmacro %} {% macro print_path(file) %} {% if file and file.parent %} {{ print_path(file.parent) }} {{ file.get_display_name() }} / {% endif %} {% endmacro %}