Subversion Repositories SmartDukaan

Rev

Rev 22162 | Rev 22193 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 22162 Rev 22191
Line 30... Line 30...
30
	}
30
	}
31
	
31
	
32
	@RequestMapping(value = "/fofo/{fofoId}/edit", method = RequestMethod.GET)
32
	@RequestMapping(value = "/fofo/{fofoId}/edit", method = RequestMethod.GET)
33
	public String editFofoForm(HttpServletRequest request, @PathVariable(name = "fofoId") int fofoId, Model model) throws Exception{
33
	public String editFofoForm(HttpServletRequest request, @PathVariable(name = "fofoId") int fofoId, Model model) throws Exception{
34
		model.addAttribute("fofoForm", mongoClient.getFofoForm(fofoId));
34
		model.addAttribute("fofoForm", mongoClient.getFofoForm(fofoId));
35
		return "fofo-edit";
35
		return "fofo-form";
36
	}
36
	}
37
}
37
}