ev6 commited on
Commit
c1fe8b6
·
verified ·
1 Parent(s): 11a3d73

Delete app/apps/emotion_recognition/templates/recognition/real_time.html

Browse files
app/apps/emotion_recognition/templates/recognition/real_time.html DELETED
@@ -1,33 +0,0 @@
1
- {% extends 'base.html' %}
2
- {% load static %}
3
- {% load crispy_forms_tags %}
4
- {% load crispy_forms_tags humanize %}
5
-
6
- {% block content %}
7
-
8
- <div class="container d-flex flex-wrap flex-column justify-content-center align-content-center">
9
- <!--
10
- <form action="" method="POST" class='col-4'enctype="multipart/form-data">
11
- {% csrf_token %}
12
- <button type="submit" class="btn btn-primary mt-3">Включить камеру</button>
13
- </form> -->
14
-
15
- <a class="btn btn-primary w-75 " data-bs-toggle="collapse" href="#collapseCamera" role="button" aria-expanded="false" aria-controls="collapseCamera">
16
- Включить/Выключить камеру
17
- </a>
18
-
19
- <div class="collapse mt-3" id="collapseCamera">
20
- <div class="card card-body">
21
- <div class="container">
22
- <div class="row">
23
- <div class="col-lg-8 offset-lg-2">
24
- <img src="{% url 'recognition:real_time_video_stream' %}" width="100%">
25
- </div>
26
- </div>
27
- </div>
28
- </div>
29
- </div>
30
-
31
- </div>
32
-
33
- {%endblock%}