@RequestMapping(value = "/przepis", method = RequestMethod.GET)
  public String showPrzepis(@RequestParam("id") int id, Model model) {
    Przepis przepis = przepisyService.getPrzepis(id);
    model.addAttribute("przepis", przepis);
    Comment comment = new Comment();
    model.addAttribute("comment", comment);
    List<Comment> comments = commentsService.getComments(przepis);
    model.addAttribute("comments", comments);

    return "przepis";
  }