summaryrefslogtreecommitdiff
path: root/templates/_film_card.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/_film_card.html')
-rw-r--r--templates/_film_card.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/_film_card.html b/templates/_film_card.html
index 5e8e6e4..a4e206f 100644
--- a/templates/_film_card.html
+++ b/templates/_film_card.html
@@ -43,11 +43,12 @@
{% if film.date_watched %}<span>{{ film.date_watched }}</span>{% endif %}
{% if film.runtime %}<span>{{ film.runtime }} min</span>{% endif %}
{% if film.language %}<span>{{ film.language }}</span>{% endif %}
- {% if film.rewatch %}<span>Rewatch</span>{% endif %}
+ {% if film.rewatch %}<span>Rewatch{% if film.rewatch_count %} #{{ film.rewatch_count }}{% endif %}</span>{% endif %}
</div>
- {% if film.context or film.how_found or film.watched_with %}
+ {% if film.genre or film.context or film.how_found or film.watched_with %}
<div class="tag-row">
+ {% if film.genre %}<span>{{ film.genre }}</span>{% endif %}
{% if film.context %}<span>{{ film.context }}</span>{% endif %}
{% if film.how_found %}<span>{{ film.how_found }}</span>{% endif %}
{% if film.watched_with %}<span>With {{ film.watched_with }}</span>{% endif %}