🩺 Praxis System
DE ES
<% const role = user?.role || null; // ✅ Regeln: // Arztbereich: NUR arzt const canDoctorArea = role === "arzt"; // Verwaltung: NUR admin const canAdminArea = role === "admin"; function hrefIfAllowed(allowed, href) { return allowed ? href : "#"; } function lockClass(allowed) { return allowed ? "" : "locked"; } function lockClick(allowed) { return allowed ? "" : 'onclick="return false;"'; } %> title="<%= canDoctorArea ? '' : 'Nur Arzt' %>" > <%= t.sidebar.patients %> <% if (!canDoctorArea) { %> <% } %> title="<%= canDoctorArea ? '' : 'Nur Arzt' %>" > <%= t.sidebar.medications %> <% if (!canDoctorArea) { %> <% } %> title="<%= canDoctorArea ? '' : 'Nur Arzt' %>" > <%= t.sidebar.servicesOpen %> <% if (!canDoctorArea) { %> <% } %> title="<%= canDoctorArea ? '' : 'Nur Arzt' %>" > <%= t.sidebar.billing %> <% if (!canDoctorArea) { %> <% } %> title="<%= canAdminArea ? '' : 'Nur Admin' %>" > <%= t.sidebar.admin %> <% if (!canAdminArea) { %> <% } %>
Logout