{% extends "admin/base_site.html" %} {% block title %}Osiris — Recap{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}

Doses — last 14 days

{% for row in recap_days %} {% endfor %}
Day Given Pulse
{{ row.date|date:"D j M" }} {% if forloop.first %}today{% endif %} {% if row.complete %} ✅ {% else %} {{ row.taken }}/{{ row.expected }} {% endif %} {% if row.bpm %}{{ row.bpm }}{% else %}{% endif %}

✅ means every active dose was ticked off that day; otherwise the count given out of expected. Tap a day to fill it in.

Pulse — last 90 days

{% if chart %} {% for point in chart.points %} {{ point.reading.date }} — {{ point.reading.bpm }} bpm {% endfor %} {{ chart.high }} {{ chart.low }}
Average{{ chart.average }} bpm
Range{{ chart.low }}–{{ chart.high }}
Readings{{ reading_count }}
Trend {% if chart.trend > 0 %}↑ +{{ chart.trend }}{% elif chart.trend < 0 %}↓ {{ chart.trend }}{% else %}→ steady{% endif %} {% if chart.trend %}bpm/day{% endif %}
{% else %}

Record the pulse on at least two days to see the graph.

{% endif %}

Daily notes

{% for note in daily_notes %}
{{ note.date|date:"l j F" }}

{{ note.body }}

{% empty %}

No notes yet — write one on the Today page.

{% endfor %}

← Back to today

{% endblock %}