feat: Add phone and email to dashboard

This commit is contained in:
Flatlogic Bot 2026-01-10 10:20:23 +00:00
parent 2a8ad6701c
commit 3da7625d06

View File

@ -166,6 +166,8 @@ $bni_groups = $stmt_bni_groups->fetchAll(PDO::FETCH_ASSOC);
<div style="font-size: 0.8rem;"> <div style="font-size: 0.8rem;">
<small class="text-muted d-block"><?= htmlspecialchars($person['companyName']) ?></small> <small class="text-muted d-block"><?= htmlspecialchars($person['companyName']) ?></small>
<small class="text-muted d-block"><?= htmlspecialchars($person['industry'] ?? '') ?></small> <small class="text-muted d-block"><?= htmlspecialchars($person['industry'] ?? '') ?></small>
<small class="text-muted d-block">Tel: <?= htmlspecialchars($person['phone'] ?? '') ?></small>
<small class="text-muted d-block">Email: <?= htmlspecialchars($person['email'] ?? '') ?></small>
<small class="text-info fw-bold d-inline"><?= htmlspecialchars(ucfirst($person['role'])) ?></small> <small class="text-info fw-bold d-inline"><?= htmlspecialchars(ucfirst($person['role'])) ?></small>
<?php if ($person['role'] === 'member' && !empty($person['bni_group_name'])): ?> <?php if ($person['role'] === 'member' && !empty($person['bni_group_name'])): ?>
<small class="text-success fw-bold d-inline">, Grupa: <?= htmlspecialchars($person['bni_group_name']) ?></small> <small class="text-success fw-bold d-inline">, Grupa: <?= htmlspecialchars($person['bni_group_name']) ?></small>