{% extends '_layout.html' %} {% block title %}Printable summary · BP Tracker{% endblock %} {% block content %}

YOUR RECORD

Blood pressure summary

{{ selected.start.strftime('%d %b %Y') }} – {{ selected.end.strftime('%d %b %Y') }} · {{ timezone_name }}

{{ current_user.profile.name or current_user.username }}

Use your browser’s Print command to print this report or save it as a PDF.

{{ stats.count }} readings

{% if stats.count %}

Average {{ stats.systolic }} / {{ stats.diastolic }} mmHg · {{ stats.pulse }} bpm

{% endif %}
{% for reading in readings %}{% else %}{% endfor %}
Local date & timeSystolic (mmHg)Diastolic (mmHg)Pulse (bpm)
{{ reading.local_timestamp.strftime('%d %b %Y, %I:%M %p %Z') }}{{ reading.systolic }}{{ reading.diastolic }}{{ reading.heart_rate }}
No readings in this period.
{% endblock %}