{/* Patient Name and Status */}
{fullName}
{isJohnDoe && (
John Doe
)}
{/* Patient Details */}
{birthDate && Geb: {birthDate}}
{bsn && BSN: {bsn}}
ID: {patient.id}
) : (
{/* Last modified timestamp */}
{patient && lastModified && (
Gewijzigd: {lastModified}
)}
{/* Actions dropdown (only when patient exists) */}
{patient && (
Nieuwe rapportage
)}
{/* Search */}