Development

This commit is contained in:
Matthew Grotke 2026-06-01 13:51:12 -04:00
parent 8ba730f92f
commit 9f1b4a9119
3 changed files with 44 additions and 21 deletions

View file

@ -523,7 +523,7 @@ def _radius_log_tail():
left = f'Showing {shown} of {total} lines ({hidden} not shown)' if hidden > 0 else f'Showing {shown} of {total} lines'
right = f'Log file size: {size_kb:.1f} KB ({pct}% of max)'
summary = (
'<div class="text-muted" style="display:flex;justify-content:space-between;margin-top:0.5em;">'
'<div id="radius-log-summary" class="text-muted" style="display:flex;justify-content:space-between;margin-top:0.5em;">'
f'<span>{left}</span><span>{right}</span></div>'
)
return ''.join(tail).strip(), summary