Commit d4d3a2cc authored by NaweenTharuka's avatar NaweenTharuka

feat: Hand gestures view

parent 08443cf8
{% extends 'users/base.html' %}
{% load static %}
{% block content %}
<div class="container">
<nav aria-label="breadcrumb mt-4">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{% url 'home' %}">Home</a></li>
<li class="breadcrumb-item"><a href="{% url 'feedback' %}">Dashboard</a></li>
<li class="breadcrumb-item active" aria-current="page">Emotion-predictions(Video)</li>
</ol>
</nav>
<div class="heading-text heading-line text-center mt-5">
<h4>Usage of Hand Gestures</h4>
</div>
<div class="d-flex">
<div class="col-5">
<div id="modalVideo" style="max-width: 700px; min-height:380px">
<div class="p-t-30 text-center">
{% for x in all %}
<h2 class="mb-3">Video Review</h2>
<div class="video-wrap m-b-20">
<video id="video-js" class="video-js" controls loop preload="false"
poster="">
<source src="{{x.video.url}}" type="video/mp4" />
<source src="{{x.video.url}}" type="video/webm" />
</video>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="col-7 px-3">
<div class="p-t-30 d-flex justify-content-center">
<div class="d-flex mb-3">
<h3 class="m-b-0">Awaiting...</h3>
</div>
</div>
</div>
</div>
<div class="d-flex justify-content-center mb-5">
<a class="btn btn-primary" href="{% url 'emotionvideo' %}" type="submit">Usage of face emotions</a>
<a class="btn btn-outline" href="{% url 'overallfeedback' %}" type="submit">View Summary Detail</a>
</div>
</div>
{% endblock content %}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment