{% extends "admin/base_site.html" %} {% block title %}Osiris — {{ day.date|date:"D d M" }}{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}
← Prev {{ day.date|date:"l j F" }} {% if is_today %}
Today{% endif %}
{% if is_today %} {% else %} Next → {% endif %}
{% csrf_token %}

Medication

{% regroup day.doses by time_of_day_label as dose_groups %} {% for group in dose_groups %}
{{ group.grouper }}
{% for dose in group.list %} {% endfor %} {% empty %}

No active medication yet. Add one.

{% endfor %}

Pulse

Note for the day

{% csrf_token %}

Shared note

{% if global_note.body %}

Last updated {{ global_note.updated_at|date:"D j M, H:i" }}

{% endif %}

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 %}

Reminders

Checking…

A reminder is sent at each dose's reminder time, and only if it isn't already ticked off. Set those times on the medication in the admin.

Diagnostics

Manage medication & history →

{% endblock %}