mauflix/source/templates/info-head.html

13 lines
444 B
HTML

<div class="hero-head movie-head">
<p class="title">{{ movie.name }}</p>
{% if request.get_full_path != "/" %}
<p class="stats">
<span class="stars">{{ movie.stars_icons }}</span>
<span><i class="gg-time"></i>{{ movie.duration_formatted | safe }}</span>
{% if user.is_authenticated %}
<span><i class="gg-software-download"></i>{{ movie.count_formatted }}</span>
{% endif %}
</p>
{% endif %}
</div>