{% extends "base.html" %} {% block title %}ECG — AHDX{% endblock %} {% block body %}

ECG readings

From the electrocardiograms in your export. Click one to see the trace.

{% for e in items %} {% else %} {% endfor %}
RecordedClassificationRateLengthFile
{{ (e['recorded_date'] or '')[:19] or 'unknown' }} {{ e['classification'] or '' }} {{ (e['sample_rate']|int) ~ ' Hz' if e['sample_rate'] else '' }} {{ ('%.0f s'|format(e['duration_s'])) if e['duration_s'] else '' }} {{ e['filename'] }}
No ECG readings. They only exist if you've taken ECGs and you import the full export.zip.
{% endblock %}