{% extends "base.html" %} {% block title %}{{ project_name }} — Fenn Dashboard{% endblock %} {% block breadcrumb %} Overview {{ project_name }} {% endblock %} {% block content %}
Sessions
{{ total_sessions }}
Running
{{ running_sessions }}
Crashed
{{ crashed_sessions }}
Warnings
{{ total_warnings }}
Exceptions
{{ total_exceptions }}
{% if sessions %}
Sessions
{% for s in sessions %} {% endfor %}
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 }}
{% else %}
🗂
No sessions yet
Run an experiment with logger.fnxml: true to populate this project.
{% endif %} {% endblock %}