public function progressAction()
 {
     $groupID = $this->_request->getParam('g');
     $group_DB = new Application_Model_DbTable_Group();
     $groupName = $group_DB->getName($groupID);
     $this->view->group_name = $groupName;
     $plans_DB = new Application_Model_DbTable_Planing();
     if (!isset($_SESSION['Default']['field'])) {
         $this->view->field_error = true;
     } else {
         $plans = $plans_DB->getByGroup($groupID, $_SESSION['Default']['field']);
         $this->view->plans = $plans;
         $this->view->groupID = $groupID;
     }
 }