{# Project-wide vibration events roll-up. Loaded via HTMX. #} {% if summary.vibration_location_count == 0 %}
No vibration monitoring locations yet. Add one to start collecting events.
{% else %}

Project-wide vibration events

across {{ summary.vibration_location_count }} location{{ '' if summary.vibration_location_count == 1 else 's' }}
Total Events {{ "{:,}".format(summary.total_events) }}
Peak PVS {% if summary.peak_pvs is not none %} {{ "%.4f"|format(summary.peak_pvs) }} in/s {{ summary.peak_pvs_location_name }} {% if summary.peak_pvs_at %} ยท {{ summary.peak_pvs_at[:10] }}{% endif %} {% else %} โ€” {% endif %}
Last Event {% if summary.last_event %} {{ summary.last_event[:19].replace('T', ' ') }} {% else %} โ€” {% endif %}
False Triggers {{ "{:,}".format(summary.false_trigger_count) }}
{% if summary.per_location and summary.total_events > 0 %}

Top locations by activity

{% endif %}
{% endif %}