{php}
$js_url = $this->_tpl_vars['js_url'];
$theme_js_url = $this->_tpl_vars['theme_js_url'];
$css_url = $this->_tpl_vars['css_url'];
$includedScripts = BizSystem::clientProxy()->getAppendedScripts();
$includedScripts .= "
";
if (JSLIB_BASE!='JQUERY') {
$includedScripts .= "
";
}
$this->_tpl_vars['scripts'] = $includedScripts;
$appendStyle = BizSystem::clientProxy()->getAppendedStyles();
$appendStyle .= "\n"."
";
$this->_tpl_vars['style_sheets'] = $appendStyle;
$this->assign('template_file', 'system_view.tpl.html');
{/php}
{include file=$template_file}