@Secured("hasAnyRole('ROLE_PERM_access_sysadmin_screens')")
  @RequestMapping(value = "/admin/sys/userprofile/{id}", method = RequestMethod.GET)
  public String getUserProfile(@PathVariable("id") Long id, Model model, Locale locale) {

    UserProfileEntityDTO userProfile = userProfileService.findWithCompany(id);

    BindableSysAdminUserProfile bindableSysAdminUserProfile = new BindableSysAdminUserProfile();
    bindableSysAdminUserProfile.setId(userProfile.getId());
    bindableSysAdminUserProfile.setEnabled(userProfile.isEnabled());
    bindableSysAdminUserProfile.setEmail(userProfile.getEmail());
    bindableSysAdminUserProfile.setCompanyId(userProfile.getCompany().getId());

    setDefaultFormData(model, locale, bindableSysAdminUserProfile, userProfile);

    return "sysAdminMain";
  }