setOutputMarkupId(true);
List<EDBLogEntry> history = edbService.getLog("null/null/" + uuid, 0L, System.currentTimeMillis());
add(new ListView<EDBLogEntry>("history", history) {
@Override
protected void populateItem(ListItem<EDBLogEntry> item) {
EDBLogEntry modelObject = item.getModelObject();
String committer = modelObject.getCommit().getCommitter();
Long timestamp = modelObject.getCommit().getTimestamp();
Date date = new Date(timestamp);
item.add(new Label("time", DATE_FORMAT.format(date)));
item.add(new Label("committer", committer));
}