public function render()
 {
     $pages = $this->page_service->getResultsPages($this->filter);
     $template = $this->prepareTemplate();
     $template->pages = $pages;
     $template->count = count($pages);
     $template->render();
 }
 public function renderDefault()
 {
     $this->template->base = $this->respondent_service->getResultsBase();
     $this->template->base_respondents = $this->respondent_service->getResultsRespondentsBase();
     $this->template->pages = $this->page_service->getResultsPages();
 }