template->user = Session::get('user'); $this->template->js_bottom = []; } public function action_index() { $body = View::forge('settings/index'); $this->template->body = $body; } public function action_servers() { $body = View::forge('settings/servers'); $servers = Model_Server::find_by('user_id',Session::get('user')->id); $body->set('servers', $servers); $this->template->body = $body; } }