mauflix/source/templates/info-foot.html

14 lines
438 B
HTML

<div class="hero-foot">
<nav class="tabs is-boxed is-fullwidth">
<div class="container {% if request.get_full_path == "/" %}extra-info{% endif %}">
<ul>
{% if request.get_full_path == "/" %}
<li><a href="/movie/{{ movie.id }}">Ver</a></li>
{% else %}
<li><a href="{{ movie.file_name }}" target="_blank" download>Descargar</a></li>
{% endif %}
</ul>
</div>
</nav>
</div>