) {
Template tmpl = Template.getTemplate(request);
ModelAndView modelAndView = new ModelAndView("view-all");
Section section = null;
if (sectionId != 0) {
section = sectionService.getSection(sectionId);
modelAndView.addObject("section", section);
modelAndView.addObject("addlink", AddTopicController.getAddUrl(section));
}
response.setDateHeader("Expires", new Date(System.currentTimeMillis() - 20 * 3600 * 1000).getTime());
response.setDateHeader("Last-Modified", new Date(System.currentTimeMillis() - 120 * 1000).getTime());
String title;
switch (sectionId) {
case Section.SECTION_NEWS:
title = "Неподтвержденные новости";
break;
case Section.SECTION_POLLS:
title = "Неподтвержденные опросы";
break;
case Section.SECTION_GALLERY:
title = "Неподтвержденные изображения";
break;
case 0:
title = "Просмотр неподтвержденных сообщений";
break;
default:
title = "Неподтвержденные: "+section.getName();
break;
}
modelAndView.addObject("title", title);