, @RequestParam(value = "offset", defaultValue = "0") int offset
, @RequestParam(value = "sort", defaultValue = "0") int sortorder
) throws Exception {
Template tmpl = Template.getTemplate(request);
if (!tmpl.isSessionAuthorized() || !tmpl.getCurrentUser().getNick().equals(nick)) {
throw new AccessViolationException("Not authorized");
}
int count = userDao.getRemarkCount(tmpl.getCurrentUser());
ModelAndView mv = new ModelAndView("view-remarks");