diff --git a/bin/web/page.dart b/bin/web/page.dart
index 52f9c37..2008c42 100644
--- a/bin/web/page.dart
+++ b/bin/web/page.dart
@@ -42,6 +42,7 @@ String statusPage() {
Calendar
Last updated: ${calendarLastUpdated?.toFormattedString() ?? "Couldn't update calendar!"}
+ Recording events matching: ${eventSelectedForRecordMatcher.pattern}
Next up today
@@ -84,7 +85,7 @@ String statusPage() {
Device configurations
${deviceConfigurations.map((devices) => """
-
+
${devices.list.map((device) => """
- ${device.name}${device.customName != null ? ' ${device.customName}' : ''} — ${device.state.name}
+ ${device.name} ${device.customName != null ? ' (${device.customName})' : ''} — ${device.state.name}
""").join()}