diff options
Diffstat (limited to 'shardweb/lib/shard_web/templates/page/index.html.eex')
-rw-r--r-- | shardweb/lib/shard_web/templates/page/index.html.eex | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/shardweb/lib/shard_web/templates/page/index.html.eex b/shardweb/lib/shard_web/templates/page/index.html.eex index 2efa030..efa651b 100644 --- a/shardweb/lib/shard_web/templates/page/index.html.eex +++ b/shardweb/lib/shard_web/templates/page/index.html.eex @@ -6,13 +6,12 @@ <th>Address</th> <th>Port</th> </tr> - <%= for {id, pid, ip, port} <- peer_list() do %> + <%= for {{:tcp4, ip, port}, pid, auth} <- conn_list() do %> <tr> <td> - <%= if pid == nil do %> - <%= peer_id_to_str(id) %> - <% else %> - <strong><%= peer_id_to_str(id) %></strong> + <%= case auth do %> + <% nil -> %>(anonymous) + <% %SNet.Auth{his_pk: his_pk} -> %> <%= his_pk %> <% end %> </td> <td><%= :inet_parse.ntoa(ip) %></td> |