add(new Label("fullName", BindingModel.of(userModel, Binding.user().fullName())));
add(new BooleanIcon("active", BindingModel.of(userModel, Binding.user().active())));
// Dates
add(new DateLabel("creationDate", BindingModel.of(userModel, Binding.user().creationDate()),
DatePattern.SHORT_DATETIME));
add(new DateLabel("lastLoginDate", BindingModel.of(userModel, Binding.user().lastLoginDate()),
DatePattern.SHORT_DATETIME));
add(new DateLabel("lastUpdateDate", BindingModel.of(userModel, Binding.user().lastUpdateDate()),
DatePattern.SHORT_DATETIME));
add(new Label("locale", new AbstractReadOnlyModel<String>() {
private static final long serialVersionUID = 1L;
@Override