{% extends "base.html" %} {% block title %}{{ session_id | short_id }}… — {{ project }} — Fenn Dashboard{% endblock %} {% block breadcrumb %} Overview {{ project }} {{ session_id | short_id }}… {% endblock %} {% block content %}
{% if started %}
⏱ Started: {{ started }}
{% endif %} {% if ended %}
⏹ Ended: {{ ended }}
{% endif %} {% if duration_s is not none %}
⌛ Duration: {{ duration_s | duration }}
{% endif %}
📄 Entries: {{ entry_count }}
{% if warning_count > 0 %}
⚠ Warnings: {{ warning_count }}
{% endif %} {% if exception_count > 0 %}
✕ Exceptions: {{ exception_count }}
{% endif %}
⧉ Copy path
{% if config %}
⚙ Configuration
{% for key, val in config.items() %}
{{ key }} = {{ val }}
{% endfor %}
{% endif %}
{% if entries %} {% for entry in entries %}
{{ entry.ts }} {{ entry.kind }} {{ entry.level }} {{ entry.message }}
{% endfor %} {% else %}
No log entries
This session has no recorded entries yet.
{% endif %}
{% endblock %}