Admin: APP-Version + SW-Version im System-Panel — SW by-v439, APP_VER 418

This commit is contained in:
rene 2026-04-26 17:44:45 +02:00
parent e0c2b2bdc1
commit 664fb2a79b
4 changed files with 20 additions and 4 deletions

View file

@ -1064,8 +1064,11 @@ window.Page_admin = (() => {
${diskPct}% · ${diskUsedGb.toFixed(1)} / ${s.disk_total_gb.toFixed(1)} GB
</div>
</div>
<div style="margin-top:var(--space-3);font-size:var(--text-xs);color:var(--c-text-muted)">
Python ${_esc(s.python_version)}
<div style="margin-top:var(--space-3);font-size:var(--text-xs);color:var(--c-text-muted);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:4px">
<span>Python ${_esc(s.python_version)}</span>
<span style="font-family:monospace;font-size:var(--text-xs);background:var(--c-surface-2);padding:2px 8px;border-radius:4px;color:var(--c-text-secondary)">
APP v${typeof APP_VER !== 'undefined' ? APP_VER : '—'} · ${_esc(s.sw_version || '?')}
</span>
</div>
</div>
`;