public function actionIndex($partial = false, $errors = [])
 {
     $humanModel = new Human();
     $renderFunction = $partial ? 'renderPartial' : 'render';
     $this->{$renderFunction}('index', ['people' => $humanModel->findAll(), 'errors' => $errors]);
 }