diff --git a/templates/main_table.html b/templates/main_table.html
index 671d424..864bf4f 100644
--- a/templates/main_table.html
+++ b/templates/main_table.html
@@ -90,7 +90,22 @@
{% for _master in _table['MASTERS'] %}
{% if _table['MASTERS'][_master]['PEERS']|length >0 %}
{% for _client, _cdata in _table['MASTERS'][_master]['PEERS'].items() %}
- {{_cdata['CALLSIGN']}}
+ {% for _client, _cdata in _table['MASTERS'][_master]['PEERS'].items() %}
+
+ {{_cdata['CALLSIGN']}}
+
+
+ DMR ID: {{ _client }}
+ {% if _cdata['RX_FREQ'] == 'N/A' and _cdata['TX_FREQ'] == 'N/A' %}
+ Connected via: IP Network
+ {% else %}
+ Connected via: Radio
+ {% endif %}
+ Type: {{ _cdata['SLOTS'] }}
+
Hardware: {{_cdata['PACKAGE_ID'] }}
+
Soft_Ver: {{_cdata['SOFTWARE_ID'] }}
+
Location: {{_cdata['LOCATION']}}
+
{% endfor %}
{% endif %}
{% endfor %}