File size: 733 Bytes
c7f87ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- templates/result.html -->
{% extends "base.html" %}
{% block title %}DRS Result{% endblock %}
{% block content %}
    <section class="result-section">
        <h2>DRS Analysis Result</h2>
        <div class="drs-verdict">
            <h3>Decision: {{ decision }}</h3>
            <p>Player: {{ player_name }}</p>
            <p>Ball Speed: {{ speed }} km/h</p>
            <p>Match ID: {{ match_id }}</p>
        </div>
        <div class="replay-container">
            <video controls>
                <source src="{{ replay_url }}" type="video/mp4">
                Your browser does not support the video tag.
            </video>
        </div>
        <a href="/" class="btn">Back to Home</a>
    </section>
{% endblock %}