From 243c44e1eb2dffb9a37621455f7b103bd63ff354 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 7 Apr 2016 13:40:01 +0200 Subject: [PATCH] fix video status --- app/festival/templates/festival/video_list.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/festival/templates/festival/video_list.html b/app/festival/templates/festival/video_list.html index ee3a3493..cc9250d8 100644 --- a/app/festival/templates/festival/video_list.html +++ b/app/festival/templates/festival/video_list.html @@ -9,7 +9,9 @@ {% block main %}
{% for video in object_list %} - {% include 'festival/inc/video_card.html' %} + {% if video.status == 2 %} + {% include 'festival/inc/video_card.html' %} + {% endif %} {% endfor %}
{% endblock %} -- 2.39.5