🩺 Praxis System
DE ES
<% const role = user?.role || null; // βœ… Regeln: // βœ… Bereich 1: Arzt + Mitarbeiter const canDoctorAndStaff = role === "arzt" || role === "mitarbeiter"; // βœ… Bereich 2: NUR Admin const canOnlyAdmin = role === "admin"; function hrefIfAllowed(allowed, href) { return allowed ? href : "#"; } function lockClass(allowed) { return allowed ? "" : "locked"; } %> <%= t.sidebar.patients %> <% if (!canDoctorAndStaff) { %> <% } %> <%= t.sidebar.medications %> <% if (!canDoctorAndStaff) { %> <% } %> <%= t.sidebar.servicesOpen %> <% if (!canDoctorAndStaff) { %> <% } %> <%= t.sidebar.billing %> <% if (!canDoctorAndStaff) { %> <% } %> <%= t.sidebar.admin %> <% if (!canOnlyAdmin) { %> <% } %>
Logout