mauflix/source/templates/info-foot.html

14 lines
438 B
HTML
Raw Normal View History

2022-11-17 17:51:43 -06:00
<div class="hero-foot">
<nav class="tabs is-boxed is-fullwidth">
2022-12-09 16:35:46 -06:00
<div class="container {% if request.get_full_path == "/" %}extra-info{% endif %}">
2022-11-17 17:51:43 -06:00
<ul>
{% if request.get_full_path == "/" %}
2022-12-09 16:35:46 -06:00
<li><a href="/movie/{{ movie.id }}">Ver</a></li>
{% else %}
<li><a href="{{ movie.file_name }}" target="_blank" download>Descargar</a></li>
2022-11-17 17:51:43 -06:00
{% endif %}
</ul>
</div>
</nav>
</div>