@RequestMapping(value="/edit/{id}")
public String edit(@PathVariable("id") Integer id, Model model){
checkModifyPermission();
CountryForm countryForm = countryAdminModel.getForm(id);
model.addAttribute("countryForm", countryForm);
return "/admin/localisation/countryForm";
}