Fix Download button showing when not logged in

This commit is contained in:
Pablo Vazquez 2017-09-17 19:00:11 +02:00
parent 7d48c02fa3
commit 4e153413d9

View File

@ -36,7 +36,7 @@
span Public
| {% endif %}
| {% if node.file %}
| {% if node.file and node.file.link %}
li.download
| {% if node.properties.content_type == 'video' %}
| {% if node.file_variations %}
@ -63,21 +63,23 @@
| {% endfor %}
| {% endif %}
| {% else %}
a(
title="Download {{ node.properties.content_type | undertitle }}",
href="{{ node.file.link }}",
download="{{ node.file.filename }}")
button.btn(type="button")
i.pi-download
| Download
li.download
a(
title="Download {{ node.properties.content_type | undertitle }}",
href="{{ node.file.link }}",
download="{{ node.file.filename }}")
button.btn(type="button")
i.pi-download
| Download
| {% endif %}
| {% else %}
a.btn(
title="Login to download {{ node.properties.content_type | undertitle }}",
href="{{ url_for('users.login') }}")
i.pi-lock
| Download
li.download
a.btn(
title="Login to download {{ node.properties.content_type | undertitle }}",
href="{{ url_for('users.login') }}")
i.pi-lock
| Download
| {% endif %}