From 23d58e48d95ebb7237d1d4b2de7484d66cfc6443 Mon Sep 17 00:00:00 2001 From: bernd Date: Thu, 13 Aug 2026 18:03:09 +0000 Subject: [PATCH] =?UTF-8?q?Sidebar:=20Mieter=20zu=20Mieterverwaltung=20mit?= =?UTF-8?q?=20Untermen=C3=BCs=20Mietereinladungen/Mieterdaten=20umbauen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/routes/contracts.ts | 1 + web-dashboard/index.html | 66 ++++++++++++++++++++++++++++++++- 2 files changed, 65 insertions(+), 2 deletions(-) diff --git a/backend/src/routes/contracts.ts b/backend/src/routes/contracts.ts index 88ac4d5..1c6e091 100644 --- a/backend/src/routes/contracts.ts +++ b/backend/src/routes/contracts.ts @@ -131,6 +131,7 @@ const CONTRACT_DOCUMENTS_SELECT = { select: { id: true, fullName: true, + email: true, phoneNumber: true, firstResidenceAddress: true, idDocumentFrontUrl: true, diff --git a/web-dashboard/index.html b/web-dashboard/index.html index 8f6cf22..cdfd176 100644 --- a/web-dashboard/index.html +++ b/web-dashboard/index.html @@ -450,6 +450,17 @@ .nav-item .nav-icon { font-size: 15px; width: 18px; text-align: center; } .nav-item:hover { background: var(--bg); } .nav-item.active { background: var(--green-bg); color: var(--green); font-weight: 600; } + .nav-group-title { + display: flex; + align-items: center; + gap: 10px; + width: 100%; + padding: 10px 12px 2px; + font-size: 13.5px; + color: var(--text); + font-weight: 600; + } + .nav-subitem { padding-left: 34px; font-size: 13px; } .content-area { flex: 1; min-width: 0; } .page { display: none; } @@ -578,7 +589,9 @@