From eb8b854211b4acbf73ca49e75e57f320478d9451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ben=20Gr=C3=A4f?= Date: Sun, 17 Jun 2018 16:09:31 +0200 Subject: [PATCH] Add external ip to log view --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 62216a9d..53f6c41f 100644 --- a/index.html +++ b/index.html @@ -410,10 +410,11 @@ $('#clientStatusList tbody').on( 'click', 'button#LOG', function () { var data = table.row( $(this).parents('tr') ).data(); var clientId = data['client_status']['client_id']; + var clientIp = data['client_status']['external_ip']; var log = data['client_status']['log']; var htmlContent = "
" + - ""+ + ""+ "" + "
";