/**
  * Show all templates for a certain module
  */
 public function action_admin_showmoduletemplates()
 {
     // Set Pagetitle and Breadcrumbs
     Clansuite_Breadcrumb::add(_('Editor'), '/templatemanager/admin/showmoduletemplates');
     // Incomming Variables
     $modulename = $this->request->getParameter('modulename', 'GET');
     $modulename = strtolower(stripslashes($modulename));
     $view = $this->getView();
     $view->assign('templateeditor_modulename', $modulename);
     $view->assign('templates', Clansuite_ModuleInfoController::getTemplatesOfModule($modulename));
     $this->display();
 }