return "healthpost";
}
@RequestMapping(value = "entries", method = RequestMethod.GET)
public String getEntriesPage(@RequestParam("pid") int postId, Model model) {
HealthPost healthPost = healthPostService.findById(postId);
model.addAttribute("healthPost", healthPost);
List<Gott> gotts = healthPost.getGotts();
model.addAttribute("gotts", gotts);
Map<Integer, String> gottList = new HashMap<Integer, String>();
for (Gott gott : gotts) {
gottList.put(gott.getGottId(), gott.getGottName());