<%= patient.firstname %> <%= patient.lastname %>
<%= t.global.birthdate %>:
<%= new Date(patient.birthdate).toLocaleDateString("de-DE") %>
➕ <%= t.patientMedications.selectmedication %>
📋 <%= t.patientMedications.selectmedication %>
<% if (!currentMeds || currentMeds.length === 0) { %>
<% } %>
<%= t.patientMedications.nomedication %>
<% } else { %>
| <%= t.patientMedications.medication %> | <%= t.patientMedications.form %> | <%= t.patientMedications.dosage %> | <%= t.patientMedications.instruction %> | <%= t.patientMedications.from %> | <%= t.patientMedications.to %> |
|---|---|---|---|---|---|
| <%= cm.medication %> | <%= cm.form %> | <%= cm.dosage %> | <%= cm.dosage_instruction || "-" %> | <%= cm.start_date ? new Date(cm.start_date).toLocaleDateString("de-DE") : "-" %> | <%= cm.end_date ? new Date(cm.end_date).toLocaleDateString("de-DE") : "-" %> |