34 lines
933 B
HTML
34 lines
933 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<style>
|
|
body {
|
|
background-image: url('{% static "bg6.jpg" %}' );
|
|
background-size: inherit;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="font-size: 50px;background-color: #eceeef; width: 45%; border-radius: 10px; margin-top: 10%" >
|
|
<div style="color: black">Ваш выбор: <br> {{tickets.0}} - {{quantity1}}
|
|
<br> {{tickets.1}} - {{quantity2}}
|
|
<br> {{tickets.2}} - {{quantity3}}
|
|
<br> Сумма к оплате - {{total_price}} P.
|
|
</div>
|
|
|
|
<div class="centered-div">Выберите способ оплаты:
|
|
<br>
|
|
<img src='{% static "sbp.jpg"%}'> <img src='{% static "cash.jpg"%}' width="20%"> <img src='{% static "webmoney.jpg"%}' width="20%">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
<style>
|
|
.centered-div {
|
|
text-align: center;
|
|
}
|
|
</style> |