public function indexAction()
 {
     $CC_CONFIG = Config::getConfig();
     $baseUrl = Application_Common_OsPath::getBaseDir();
     $this->view->headScript()->appendFile($baseUrl . 'js/airtime/playouthistory/template.js?' . $CC_CONFIG['airtime_version'], 'text/javascript');
     $this->view->headLink()->appendStylesheet($baseUrl . 'css/history_styles.css?' . $CC_CONFIG['airtime_version']);
     $historyService = new Application_Service_HistoryService();
     $this->view->template_list = $historyService->getListItemTemplates();
     $this->view->template_file = $historyService->getFileTemplates();
     $this->view->configured = $historyService->getConfiguredTemplateIds();
 }