Keine Beschreibung

index.html 1.2KB

12345678910111213141516171819202122232425262728293031
  1. {% extends 'base.html' %}
  2. {% block main %}
  3. <div class='row'>
  4. <div x-data="video_init">
  5. <div class='row p-2'>
  6. <input x-model="search" placeholder="Search..." class='form-control'>
  7. </div>
  8. <video x-init="vdo($el)" class="video-js vjs-default-skin m-auto" controls preload autoplay muted>
  9. <source src="./video/cctv.m3u8" type="application/x-mpegURL">
  10. </video>
  11. <div class='row'>
  12. <template x-for="item in filteredItems" :key="item">
  13. <div class='col-md-6 mb-2 text-center'>
  14. <template x-if="item == '1001'">
  15. <img src="http://localhost:9099/video_feed/0/" width="480">
  16. </template>
  17. <template x-if="item == '3001'">
  18. <img src="http://localhost:9024/video_feed/0/" width="480">
  19. </template>
  20. <p>
  21. <strong x-text='item'></strong></p>
  22. </div>
  23. </template>
  24. </div>
  25. </div>
  26. </div>
  27. {% endblock %}