HTMLNode row = identitiesTable.addChild("tr");
row.addChild("th", "Name");
row.addChild("th", "Freetalk address");
while (ownIdentities.hasNext()) {
OwnIdentity id = ownIdentities.next();
row = identitiesTable.addChild("tr");
row.addChild("td", id.getNickname());
row.addChild("td", id.getFreetalkAddress());
/*
HTMLNode lastUpdateCell = row.addChild("td");
if (id.getLastInsert() == null) {
lastUpdateCell.addChild("p", "Insert in progress...");