๐Ÿพ Mark's Safety System

Protecting Angel & Scout โ€” automated check-in monitor

โœ…  I'm OK โ€” Check In Now {% set h = hours_since %} {% if h < 24 %} {% set sc = 'ok' %} {% set sc2 = 'status-ok' %} {% elif h < 48 %} {% set sc = 'warn' %} {% set sc2 = 'status-warn' %} {% else %} {% set sc = 'bad' %} {% set sc2 = 'status-bad' %} {% endif %}
Time since last check-in
{{ hours_since }} hrs
{% if last_checkin %}
Last check-in: {{ last_checkin.timestamp.strftime('%b %d, %Y at %I:%M %p') }} UTC  ยท  via {{ last_checkin.method }}
{% else %}
No check-ins recorded yet.
{% endif %}
How the system works
๐Ÿ•™ 10:00 AM daily โ€” SMS sent to your phone asking you to check in
๐Ÿ“ง +4 hours (2 PM) โ€” If no reply, a backup email is sent to you
๐Ÿšจ +48 hours โ€” Emergency SMS + email fired to your contact for Angel & Scout
{% if alerts %}
Recent alert log
{% for a in alerts %} {% endfor %}
Time (UTC)TypeResult
{{ a.timestamp.strftime('%m/%d %I:%M%p') }} {{ a.alert_type }} {% if a.success %} Sent โœ“ {% else %} Failed โœ— {% endif %}
{% endif %}