%- include("partials/page-header", {
user,
title: t.dashboard.title,
subtitle: "",
showUserName: true,
hideDashboardButton: true
}) %>
<%- include("partials/flash") %>
🪑 <%= t.dashboard.waitingRoom %>
<% if (waitingPatients && waitingPatients.length > 0) { %>
<% waitingPatients.forEach(p => { %>
<% if (user.role === "arzt") { %>
<% } else { %>
<%= p.firstname %> <%= p.lastname %>
<% } %>
<% }) %>
<% } else { %>
<%= t.dashboard.noWaitingPatients %>
<% } %>