You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
depot_django/templates/common/allowed-vehicles.html

55 lines
915 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vehicles with bookings</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
background-color: black;
color: white;
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
.table-container {
width: 90%;
margin: 0 auto;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
text-align: left;
padding: 12px;
border: 1px solid #ddd;
}
th {
background-color: #f5f5f5;
}
</style>
</head>
<body>
<h1>Vehicles with bookings</h1>
<div class="table-container">
<table>
<thead>
<tr>
<th>Line name</th>
</tr>
</thead>
<tbody>
<tr>
<td>BB1234TT, TT1234BB</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>