12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>BV download</title>
- <style>
- html,body{
- height: 100%;
- }
- </style>
- </head>
- <body>
- <div style="height: 40%;width: 40%;margin-left: 30%;" >
- <iframe src= "{{ src }}" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="width: 100%; height: 100%;"> </iframe>
- </div>
- <div style="height: 10%;width: 40%;margin-left: 30%; background: rgb(49, 132, 106);border: 0;">
- <div style="color: aliceblue; text-align: center; width: 100%; padding-top: 2%; padding-bottom: 1.5%;">{{ bvname }}</div>
- <form action="/getAudio/download?file={{ file }}&", method="POST">
- {% csrf_token %}
- <input type="submit" value="下载" style="height: 40%; width: 10%; margin-left: 45%;">
- </form>
- </div>
- </body>
- </html>
|