- connection.wfile.write(str(i) + ' : ' + str(self.stuff.clientcounter.clients[i][0]) + ' ' +
- str(self.stuff.clientcounter.clients[i][1]) + '<br>')
+ connection.wfile.write('<tr>')
+ connection.wfile.write('<td>' + str(i) + ' </td><td> ' + str(self.stuff.clientcounter.clients[i][0]) + '</td><td>')
+ for client in self.stuff.clientcounter.clients[i][1]:
+ connection.wfile.write(str(client) + '<br>')
+ connection.wfile.write('</td></tr>')
+ connection.wfile.write('</table>')