feat(connector): [31188f42] Finalize production optimizations, filtering, and dashboard enhancements

This commit is contained in:
2026-03-05 09:48:34 +00:00
parent f341d85024
commit 5ef247190e
29 changed files with 1178 additions and 89 deletions

View File

@@ -147,6 +147,7 @@ def dashboard():
<thead>
<tr>
<th>Account / Person</th>
<th width="100">Responsible</th>
<th width="120">ID</th>
<th width="150">Process Progress</th>
<th width="100">Duration</th>
@@ -156,7 +157,7 @@ def dashboard():
</tr>
</thead>
<tbody id="account-table">
<tr><td colspan="6" style="text-align:center;">Loading Accounts...</td></tr>
<tr><td colspan="8" style="text-align:center;">Loading Accounts...</td></tr>
</tbody>
</table>
</div>
@@ -204,7 +205,7 @@ def dashboard():
tbody.innerHTML = '';
if (accounts.length === 0) {
tbody.innerHTML = '<tr><td colspan="6" style="text-align:center;">No accounts in process</td></tr>';
tbody.innerHTML = '<tr><td colspan="8" style="text-align:center;">No accounts in process</td></tr>';
return;
}
@@ -226,6 +227,7 @@ def dashboard():
<strong>${acc.name}</strong>
<span class="meta">${acc.last_event}</span>
</td>
<td><span class="status status-PENDING" style="font-size: 10px;">👤 ${acc.associate || '---'}</span></td>
<td>${acc.id}</td>
<td>${phasesHtml}</td>
<td><span class="meta">${acc.duration || '0s'}</span></td>