diff --git a/src/c3nav/mesh/templates/mesh/mesh_messages.html b/src/c3nav/mesh/templates/mesh/mesh_messages.html
index c5dc3332..2ad3ae53 100644
--- a/src/c3nav/mesh/templates/mesh/mesh_messages.html
+++ b/src/c3nav/mesh/templates/mesh/mesh_messages.html
@@ -55,7 +55,19 @@
{{ msg.get_message_type_display }} |
- {% if msg.message_type == "CONFIG_HARDWARE" %}
+ {% if msg.message_type == "ECHO_RESPONSE" %}
+ Content: {{ msg.parsed.content.content }}
+
+ {% elif msg.message_type == "CONFIG_NODE" %}
+ Number: {{ msg.parsed.content.number }},
+ Name: {{ msg.parsed.content.name }}
+
+ {% elif msg.message_type == "CONFIG_IBEACON" %}
+ UUID: {{ msg.parsed.content.uuid }}
+ Major: {{ msg.parsed.content.major }},
+ Minor: {{ msg.parsed.content.minor }}
+
+ {% elif msg.message_type == "CONFIG_HARDWARE" %}
Chip: {{ msg.parsed.content.chip.pretty_name }} rev{{ msg.parsed.content.revision_major }}.{{ msg.parsed.content.revision_minor }}
{% elif msg.message_type == "CONFIG_BOARD" %}
|