- Accessibility: dark ink (#00003d) on warning/success buttons, badges, and success alert - white text on #ff9500/#0ad64f failed WCAG AA (~2:1); dark-on-bright now passes. - Heading hierarchy: sidebar brand h1 -> div.brand-title (with matching CSS selector), and standardized all page-header titles to a single <h1> per page (8 templates were h2). - Prefix-safe modal JS: dashboard/backups/reports/enrollment delete+clone actions now build their form action from url_for(...'__K__'/'__F__').replace(...) instead of hardcoded paths, so they survive a URL-prefix mount.
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">
|
|
<h1><i class="bi bi-shield-check"></i> Blancco Erasure Reports</h1>
|
|
<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 = "{{ url_for('blancco_delete_report', filename='__F__') }}".replace('__F__', encodeURIComponent(filename));
|
|
});
|
|
</script>
|
|
{% endblock %}
|