IT Architecture Dashboard

A strategic overview of the application and technology portfolio.

Total Applications
0
Avg. Technical Health
0
Mission-Critical Apps
0
Technologies to Retire
0

Portfolio by Criticality

Application Health Distribution

Application Details

Select an application from the list to see its details.

Application Catalog

ApplicationBusiness UnitCriticalityHealth

Manage Applications

Manage Technologies

Lifecycle Status: ${app.status}

Technology Stack:

    ${techStack.map(t => `
  • ${t.name} (${t.category})
  • `).join('') || '
  • Not defined
  • '}
`; }; const renderDataManagement = () => { /* Logic to populate forms and lists */ }; // --- EVENT LISTENERS --- // (Add full CRUD listeners for apps and technologies) window.itSwitchTab = (evt, tabName) => { document.querySelectorAll('#it-arch-dashboard-container .it-tab-content').forEach(tc => tc.style.display = 'none'); document.querySelectorAll('#it-arch-dashboard-container .it-tab-button').forEach(tl => tl.classList.remove('active')); document.getElementById(tabName).style.display = 'block'; evt.currentTarget.classList.add('active'); }; // --- INITIALIZATION --- loadState(); renderAll(); });
Scroll to Top