Adopt the shopdb-flask visual language across the PXE webapp (presentation only, Flask/Jinja logic unchanged): - New static/pxe-theme.css: GE Aerospace palette (atmosphere-blue sidebar, sky-blue primary, avionics-green), Inter font stack, light/dark theming via data-theme + localStorage (key pxe-theme) with system-pref fallback, and card/button/table/form/badge/alert component styles layered over Bootstrap. - base.html: shopdb-style sidebar (logo + title, nav sections, footer light/dark toggle) + theme boot script. - All 13 content templates restyled to the new page-header + card/table/badge vocabulary; unattend_editor grouped per unattend-UX research. - Fixed a pre-existing CRITICAL bug found during review: nested <form>s in image_config.html made Adopt submit the delete form and Delete-selected post every orphan filename regardless of checkboxes; split into standalone forms wired via the form= attribute. Built by a Fable-orchestrated Opus workflow (17 agents). All 14 templates parse clean under Jinja2.
114 lines
4.5 KiB
HTML
114 lines
4.5 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Blancco Reports - PXE Server Manager{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<h2><i class="bi bi-shield-check"></i> Blancco Erasure Reports</h2>
|
|
<div class="header-actions">
|
|
<span class="badge badge-secondary badge-lg">{{ reports|length }} report{{ 's' if reports|length != 1 }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section-card">
|
|
<div class="section-title">Drive Erasure Certificates</div>
|
|
{% if reports %}
|
|
<div class="table-container">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Serial</th>
|
|
<th>Model</th>
|
|
<th>Date</th>
|
|
<th>Result</th>
|
|
<th class="text-end">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for r in reports %}
|
|
<tr title="{{ r.filename }}">
|
|
<td>{% if r.serial %}<span class="mono">{{ r.serial }}</span>{% else %}<span class="text-muted">-</span>{% endif %}</td>
|
|
<td>{{ r.model or '-' }}</td>
|
|
<td>{{ r.modified | timestamp_fmt }}</td>
|
|
<td>
|
|
{% if r.state == 'Successful' %}<span class="badge badge-success">Successful</span>
|
|
{% elif r.state == 'Failed' %}<span class="badge badge-danger">Failed</span>
|
|
{% elif r.state %}<span class="badge badge-secondary">{{ r.state }}</span>
|
|
{% else %}<span class="text-muted">-</span>{% endif %}
|
|
</td>
|
|
<td class="actions text-end text-nowrap">
|
|
{% if r.filename.lower().endswith('.xml') %}
|
|
<a href="{{ url_for('blancco_view_report', filename=r.filename) }}"
|
|
class="pxe-btn pxe-btn-success btn-row-action" title="View formatted report">
|
|
<i class="bi bi-eye"></i> View
|
|
</a>
|
|
{% endif %}
|
|
<a href="{{ url_for('blancco_download_report', filename=r.filename) }}"
|
|
class="pxe-btn pxe-btn-secondary btn-row-action" title="Download">
|
|
<i class="bi bi-download"></i> Download
|
|
</a>
|
|
<button type="button" class="pxe-btn pxe-btn-danger btn-row-action"
|
|
data-bs-toggle="modal" data-bs-target="#deleteModal"
|
|
data-filename="{{ r.filename }}" title="Delete">
|
|
<i class="bi bi-trash"></i> Delete
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% else %}
|
|
<div class="text-center text-muted py-5">
|
|
<p class="mt-2"><i class="bi bi-inbox" style="font-size:1.75rem;"></i></p>
|
|
<p class="mb-1">No erasure reports yet.</p>
|
|
<p class="small">Reports will appear here after Blancco Drive Eraser completes a wipe.</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="pxe-card mt-3">
|
|
<h3 class="pxe-card-title"><i class="bi bi-hdd-network"></i> Report Storage</h3>
|
|
<p class="mb-1">
|
|
Blancco Drive Eraser saves erasure certificates to the network share
|
|
<span class="mono">\\172.16.9.1\blancco-reports</span>.
|
|
</p>
|
|
<p class="mb-0 text-muted">
|
|
Reports are generated automatically after each drive wipe and contain proof of erasure for compliance and audit purposes.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Delete Confirmation Modal -->
|
|
<div class="modal fade" id="deleteModal" tabindex="-1">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form id="deleteForm" method="post">
|
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token() }}">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">Confirm Delete</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>Are you sure you want to delete <strong id="deleteFilename"></strong>?</p>
|
|
<p class="text-muted mb-0">Erasure reports may be needed for compliance audits. This action cannot be undone.</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="pxe-btn pxe-btn-ghost" data-bs-dismiss="modal">Cancel</button>
|
|
<button type="submit" class="pxe-btn pxe-btn-danger">Delete</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block extra_scripts %}
|
|
<script>
|
|
document.getElementById('deleteModal').addEventListener('show.bs.modal', function (event) {
|
|
var btn = event.relatedTarget;
|
|
var filename = btn.getAttribute('data-filename');
|
|
document.getElementById('deleteFilename').textContent = filename;
|
|
document.getElementById('deleteForm').action = '/reports/delete/' + encodeURIComponent(filename);
|
|
});
|
|
</script>
|
|
{% endblock %}
|