EE-downloader-v3/templates/camera_videos_partial.html

29 lines
1.0 KiB
HTML

<h3>List of Videos <i class="bi bi-calendar-event"></i></h3>
<h5>{{ template_values['camera'].name }}</h5>
{% if template_values['videos'] %}
{% for video in template_values['videos'] %}
<div class="row">
<div class="col-4 left_text">
{{ video['endTimestamp'] }}
</div>
<div class="col-4 left_text">
{{ video['startTimestamp'] }}
</div>
<div class="col-4 left_text">
<a href="/camera/{{ video['deviceId'] }}/video_player/{{ video['startTimestamp'] }}" hx-get="/camera/{{ video['deviceId'] }}/video_player/{{ video['startTimestamp'] }}" hx-trigger="click" hx-target="#camera_detail" hx-indicator=".progress">
<button class="btn btn-outline-success">
<i class="bi bi-play" title="click to play video"></i>
</button>
</a>
</div>
</div>
{% endfor %}
{% endif %}
<script>
document.getElementById('')
</script>