๐พ 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
| Time (UTC) | Type | Result |
{% for a in alerts %}
| {{ a.timestamp.strftime('%m/%d %I:%M%p') }} |
{{ a.alert_type }} |
{% if a.success %}
Sent โ
{% else %}
Failed โ
{% endif %}
|
{% endfor %}
{% endif %}