{# Renders `rows` (list of log dicts, oldest first) as expandable monospace lines. Used by logs.html and the server Logs tab. #} {% for r in rows %}
{{ r.at_s[5:] }}{{ r.server }}{{ r.level or '—' }}{{ r.unit or (r.file or '').split('/')[-1] }}{{ r.line }}
{{ r.source or 'file' }} · {{ r.file or r.unit or '' }} · {{ r.at_iso }} · id {{ r.id }}
{% endfor %}