50 lines
1.0 KiB
HTML
50 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Kevos orders</title>
|
|
<style>
|
|
body{
|
|
background-color: #D1D5DB;
|
|
}
|
|
table {
|
|
font-family: arial, sans-serif;
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
td, th {
|
|
border: 1px solid black;
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #D1D5DB;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
|
|
<div class="orders-section">
|
|
<table>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Email</th>
|
|
<th>Order</th>
|
|
</tr>
|
|
{% for order in orders %}
|
|
<tr>
|
|
<td>{{ order.id }}</td>
|
|
<td>{{ order.email }}</td>
|
|
<td>{{ order.order }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |