{% extends "base.html" %} {% block title %}{{ project_name }} — Fenn Dashboard{% endblock %} {% block breadcrumb %} Overview {% endblock %} {% block content %}
{{ total_sessions }} session{% if total_sessions != 1 %}s{% endif %} recorded
| Session ID | Started | Duration | Status | Entries | Warnings | Exceptions | Size |
|---|---|---|---|---|---|---|---|
| {{ s.session_id }} | {{ s.started }} | {{ s.duration_s | duration }} | {% if s.status == 'running' %} running {% elif s.status == 'crashed' %} crashed {% elif s.status == 'failed' %} failed {% else %} completed {% endif %} | {{ s.entry_count }} | {{ s.warning_count if s.warning_count else '—' }} | {{ s.exception_count if s.exception_count else '—' }} | {{ s.file_size | filesize }} |
logger.fnxml: true to populate this project.