public function createAction()
 {
     $this->setViewChange('form');
     if ($this->getRequest()->isPost()) {
         Model_Notificationtemplates::create($this->getRequest()->getParams());
         $this->session->set('successfu_edite', true);
         $this->redirect($this->getRequest()->getBaseUrl() . $this->getRequest()->getModule() . '/notificationtemplates/');
     }
     $this->getForm();
 }