From 897af06af9522ded99b1e0f46730299e89856ffe Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Mon, 11 Jun 2012 05:00:57 -0400 Subject: [PATCH] Updated version number to 3.0.4.6 --- interface/web/themes/default/templates/tabbed_form.tpl.htm | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/interface/web/themes/default/templates/tabbed_form.tpl.htm b/interface/web/themes/default/templates/tabbed_form.tpl.htm new file mode 100644 index 0000000..c4e618d --- /dev/null +++ b/interface/web/themes/default/templates/tabbed_form.tpl.htm @@ -0,0 +1,28 @@ +<tmpl_if name="form_hint"> +<h2><tmpl_var name="form_hint"></h2> +</tmpl_if> +<div class="tabbox_tabs"> + <ul> +<tmpl_loop name="formTab"> +<tmpl_if name="active"> + <li class="active"><a href="javascript:changeTab('<tmpl_var name='name'>','<tmpl_var name='app_module'>/<tmpl_var name='form_action'>')"><tmpl_var name='title'></a></li> +<tmpl_else> + <li><a href="javascript:changeTab('<tmpl_var name='name'>','<tmpl_var name='app_module'>/<tmpl_var name='form_action'>')"><tmpl_var name='title'></a></li> +</tmpl_if> +</tmpl_loop> + </ul> +</div> +<div id="tabbox_content"> + + <tmpl_if name="msg"> + <div id="OKMsg"><p><tmpl_var name="msg"></p></div> + </tmpl_if> + <tmpl_if name="error"> + <div id="errorMsg"><h3>ERROR</h3><ol><tmpl_var name="error"></ol></div> + </tmpl_if> + + <tmpl_dyninclude name="content_tpl"> +</div> + +<input type="hidden" name="next_tab" value=""> +<input type="hidden" name="phpsessid" value="{tmpl_var name='phpsessid'}"> -- Gitblit v1.9.1