/**
  * Gets the index view for the scaffold
  * @param zibo\library\html\table\ExtendedTable $table Table with the model data
  * @param array $actions Array with the URL of the action as key and the label for the action as value
  * @return zibo\core\View
  */
 protected function getIndexView(ExtendedTable $table, array $actions = null)
 {
     $view = parent::getIndexView($table, $actions);
     if ($this->filterForm) {
         $filterView = new LogFilterView($this->filterForm);
         $view->getSidebar()->addPanel($filterView);
     }
     return $view;
 }