30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!-- views/transcriptionPages/transcriptionReview.html -->
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Transcript - {{ filename }}</title>
|
|
<link rel="stylesheet" href="https://db.onlinewebfonts.com/c/5ac3fe7c6abd2f62067f266d89671492?family=HelveticaNowDisplay-Medium" />
|
|
<link rel="stylesheet" href="https://db.onlinewebfonts.com/c/1aa3377e489837a26d019bba501e779d?family=HelveticaNowDisplayW01-Rg" />
|
|
<link rel="stylesheet" href="/static/transcriptionPages/transcriptionReview.css" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Kết quả phiên âm</h1>
|
|
<div class="meta">
|
|
<strong>File:</strong> {{ filename }}<br />
|
|
<strong>Job ID:</strong> {{ job_id }}
|
|
</div>
|
|
|
|
<div style="margin-bottom: 20px">
|
|
<a href="/" class="btn">← Về</a>
|
|
<a href="/transcript/{{ job_id }}" class="btn">Tải TXT</a>
|
|
</div>
|
|
|
|
<div class="transcript">{{ content }}</div>
|
|
</div>
|
|
<script src="/static/transcriptionPages/transcriptionReview.js"></script>
|
|
</body>
|
|
</html>
|