Header Information

LEGEND (Mark blocks after each item as follows)
✓ = Satisfactory ✗ = Unsatisfactory Circle the "✗" for items corrected If N/A, Enter "-" (Dash)

Certification & Signatures

I certify that all items, including hazards, have been declared, properly prepared, and presented for airlift in accordance with all applicable directives.

I certify the above declared items have been inspected and properly prepared for airlift in accordance with all applicable directives.

18. Additional Information (Page 2)

`; } function generatePrintInspectionTable(statuses, tcns) { let html = ''; inspectionSections.forEach(section => { const sub = section.subtitle ? ` (${section.subtitle})` : ''; // Section header spans full width with light gray background html += ``; section.items.forEach(item => { const note = item.note ? ` (${item.note})` : ''; const indent = item.indent ? 'padding-left:12px;' : ''; const ltr = item.letter.length > 1 ? '' : `${item.letter}. `; html += ``; for (let i = 1; i <= 12; i++) { const key = `${section.id}_${item.letter}_${i}`; // Only show status if that column has a TCN entered const hasTcn = tcns[i-1] && tcns[i-1].trim() !== ''; const statusValue = hasTcn ? (statuses[key] || '') : ''; html += ``; } html += ''; }); html += '
${section.num}. ${section.title}${sub}
${ltr}${item.text}${note}${statusValue}
'; }); return html; } function clearForm() { if (confirm('Clear all form data?')) { document.getElementById('dd2133Form').reset(); } } document.addEventListener('DOMContentLoaded', function() { generateInspectionTable(); const today = new Date().toISOString().split('T')[0]; document.getElementById('inspectionDate').value = today; document.getElementById('deployingForceDate').value = today; document.getElementById('mobilityForceDate').value = today; });