Files

68 lines
2.4 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Facility QR Codes — Print Sheet</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css">
<style>
body { background:#f1f5f9; }
.sheet { max-width:900px; margin:1.5rem auto; padding:0 1rem; }
.qr-cell { background:#fff; border:1px solid #e2e8f0; border-radius:.5rem;
padding:1.25rem; text-align:center; height:100%;
break-inside:avoid; page-break-inside:avoid; }
.qr-cell svg { width:180px; height:180px; }
.qr-cell .fac { font-weight:600; margin-top:.5rem; }
.qr-cell .sub { font-size:.75rem; color:#64748b; }
@media print {
body { background:#fff; }
.no-print { display:none !important; }
.sheet { max-width:none; margin:0; padding:0; }
.qr-cell { border:1px dashed #cbd5e1; border-radius:0; }
}
</style>
</head>
<body>
<div class="sheet">
<div class="d-flex justify-content-between align-items-center mb-3 no-print">
<h4 class="mb-0"><i class="bi bi-qr-code"></i> Facility QR Codes ({{ cards|length }})</h4>
<div class="d-flex gap-2">
<a href="{{ url_for('facilities.list_facilities') }}" class="btn btn-outline-secondary btn-sm">
<i class="bi bi-arrow-left"></i> Back to Facilities
</a>
<button onclick="window.print()" class="btn btn-primary btn-sm">
<i class="bi bi-printer"></i> Print All
</button>
</div>
</div>
<p class="text-muted small no-print">
Cut along the dashed borders and post each code at its facility.
Scanning shows recent inspection scores, open-issue counts, and the quality trend.
</p>
<div class="row g-3">
{% for c in cards %}
<div class="col-12 col-sm-6 col-md-4">
<div class="qr-cell">
{{ c.svg | safe }}
<div class="fac">{{ c.facility.name }}</div>
<div class="sub">
{% if c.facility.project %}{{ c.facility.project.name }}<br>{% endif %}
Scan for the latest inspection results
</div>
</div>
</div>
{% endfor %}
</div>
{% if not cards %}
<div class="alert alert-info">No active facilities to print.</div>
{% endif %}
</div>
</body>
</html>