flask_crud_app/templates/csv_preview.html

74 lines
2.3 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-02-04 19:49:34 +00:00
<script src="{{ url_for('static', filename='edited _csv.js') }}"></script>
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 -->
2025-02-05 08:26:37 +00:00
{% if new_assets %}
<p>New assets:</p>
2025-01-30 07:37:21 +00:00
<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-02-05 08:26:37 +00:00
{% for asset in new_assets %}
2025-01-30 07:37:21 +00:00
<tr>
2025-02-04 06:35:18 +00:00
<td contenteditable="true">{{ asset.assettag }}</td>
<td contenteditable="true">{{ asset.hostname }}</td>
<td contenteditable="true">{{ asset.warrantyfrom }}</td>
<td contenteditable="true">{{ asset.status }}</td>
<td contenteditable="true">{{ asset.staffnum }}</td>
2025-01-30 07:37:21 +00:00
</tr>
{% endfor %}
</tbody>
</table>
2025-02-05 08:26:37 +00:00
{% endif %}
{% if existing %}
<p>These assets are already in the database:</p>
<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>
{% for asset in existing %}
<tr>
<td>{{ asset.assettag }}</td>
<td>{{ asset.hostname }}</td>
<td>{{ asset.warrantyfrom }}</td>
<td>{{ asset.status }}</td>
<td>{{ asset.staffnum }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
2025-01-30 07:37:21 +00:00
2025-02-01 17:53:13 +00:00
<!-- Form button to confirm and save data -->
2025-02-05 08:26:37 +00:00
{% if new_assets %}
2025-02-04 19:11:03 +00:00
<form action="/confirm_save" method="POST" onsubmit="collectEditedData()">
2025-01-30 07:37:21 +00:00
<button type="submit">Confirm and Save to Database</button>
</form>
2025-02-05 08:26:37 +00:00
{% endif %}
<!-- Cancel button that redirects to the home page -->
<button type="button" onclick="window.location.href='/'">Cancel</button>
2025-01-30 07:37:21 +00:00
</body>
</html>