%inherit file="base.html"/>
% for endpoint, endpoint_sockets in sockets.items():
${endpoint} sockets activity
%for socket in endpoint_sockets:
%if 'host' in socket:
${socket['host']}:${socket['port']} (fd: ${socket['fd']}, name: ${socket['name']})
%else:
${socket['path']} (fd: ${socket['fd']}, name: ${socket['name']})
%endif
%endfor
% endfor