flask_crud_app/templates/csv_preview.html

40 lines
1.1 KiB
HTML
Raw Normal View History

2025-01-30 07:37:21 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-01-30 09:58:34 +00:00
<title>CSV Preview</title>
2025-01-30 07:37:21 +00:00
</head>
<body>
2025-01-30 09:58:34 +00:00
<h1>CSV Preview</h1>
2025-01-30 07:37:21 +00:00
<!-- Display CSV data in a table -->
<table border="1">
<thead>
<tr>
<th>Asset Tag</th>
<th>Hostname</th>
<th>Warranty From</th>
<th>Status</th>
<th>Staff Number</th>
</tr>
</thead>
<tbody>
2025-01-30 09:58:34 +00:00
{% for asset in assets %}
2025-01-30 07:37:21 +00:00
<tr>
2025-01-30 09:58:34 +00:00
<td>{{ asset.assettag }}</td>
<td>{{ asset.hostname }}</td>
<td>{{ asset.warrantyfrom }}</td>
<td>{{ asset.status }}</td>
<td>{{ asset.staffnum }}</td>
2025-01-30 07:37:21 +00:00
</tr>
{% endfor %}
</tbody>
</table>
2025-02-01 17:53:13 +00:00
<!-- Form button to confirm and save data -->
2025-01-30 09:58:34 +00:00
<form action="/confirm_save" method="POST">
2025-01-30 07:37:21 +00:00
<button type="submit">Confirm and Save to Database</button>
</form>
</body>
</html>