76 lines
2.9 KiB
HTML
76 lines
2.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>QR Code — {{ facility.name }}</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; }
|
|
.qr-card { max-width:420px; margin:2rem auto; background:#fff; border-radius:.75rem;
|
|
box-shadow:0 1px 3px rgba(0,0,0,.12); padding:2rem; text-align:center; }
|
|
.qr-box svg { width:260px; height:260px; }
|
|
.scan-url { word-break:break-all; font-size:.72rem; color:#94a3b8; }
|
|
@media print {
|
|
body { background:#fff; }
|
|
.no-print { display:none !important; }
|
|
.qr-card { box-shadow:none; margin:0 auto; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="text-center mt-3 no-print">
|
|
<a href="{{ url_for('facilities.view_facility', facility_id=facility.id) }}"
|
|
class="btn btn-outline-secondary btn-sm">
|
|
<i class="bi bi-arrow-left"></i> Back to Facility
|
|
</a>
|
|
<button onclick="window.print()" class="btn btn-primary btn-sm">
|
|
<i class="bi bi-printer"></i> Print
|
|
</button>
|
|
<a href="{{ url_for('facilities.qr_sheet') }}" class="btn btn-outline-primary btn-sm">
|
|
<i class="bi bi-grid-3x3-gap"></i> Print All Facilities
|
|
</a>
|
|
</div>
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ 'success' if category == 'success' else 'warning' }} mx-auto mt-3 no-print" style="max-width:420px;">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endwith %}
|
|
|
|
<div class="qr-card">
|
|
<h4 class="mb-0">{{ facility.name }}</h4>
|
|
{% if facility.project %}<div class="text-muted small">{{ facility.project.name }}</div>{% endif %}
|
|
{% if facility.address %}<div class="text-muted small mb-2">{{ facility.address }}</div>{% endif %}
|
|
|
|
<div class="qr-box my-3">{{ svg | safe }}</div>
|
|
|
|
<div class="fw-semibold mb-1">
|
|
<i class="bi bi-phone"></i> Scan for the latest inspection results
|
|
</div>
|
|
<div class="text-muted small mb-2">
|
|
Recent scores, open issues, and quality trend for this facility.
|
|
</div>
|
|
<div class="scan-url">{{ scan_url }}</div>
|
|
</div>
|
|
|
|
{% if current_user.role in ['admin', 'director'] %}
|
|
<div class="text-center mb-4 no-print">
|
|
<form method="POST" action="{{ url_for('facilities.regenerate_qr', facility_id=facility.id) }}"
|
|
onsubmit="return confirm('Regenerate this QR code? Every previously printed poster for this facility will stop working.');">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
|
|
<button type="submit" class="btn btn-outline-danger btn-sm">
|
|
<i class="bi bi-arrow-repeat"></i> Regenerate QR Code
|
|
</button>
|
|
<div class="form-text">Use this if a printed poster leaked or was posted somewhere it shouldn't be.</div>
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
|
|
</body>
|
|
</html>
|