У меня есть проект с видео, и я хочу сделать, если l oop, который добавит значок к видео, если вы сейчас находитесь на этом видео. Как это реализовать? Вы можете проверить пример ниже
шаблон
<h1>{{ video.title }}</h1>
<video width="960" height="620" id="plyr-video" poster="/path/to/video-poster.png" controls>
<source src="{{ video.video.url }}" type="video/mp4">
<source src="/path/to/video.webm" type="video/webm">
<!-- Captions are optional -->
<track kind="captions" label="English captions" src="/path/to/video-caption.vtt" srclang="en" default>
</video>
<h1>{{ course.title }}</h1>
<div class="ui styled accordion">
{% for section in sections %}
<div class="title {% if section == video.section %}active{% endif %}">
<i class="dropdown icon"></i>
{{ section.title }}
</div>
<div class="content {% if video.section == section %}active{% endif %}">
<div class="ui divided list">
{% for video in videos %}
{% if video.section == section %}
<div class="item">
<i class="map video icon"></i>
<div class="content">
<a class="header" href="{% url 'courses:video_detail' course.slug video.pk %}">{{ video.title }}{% if %}<i class="small play red icon"></i>{% endif %}</a>
<div class="description">An excellent polish restaurant, quick delivery and hearty, filling meals.</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}