redray
2008-10-25 083900065ba4c7b8c2ae0e5023d626341912adba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<tmpl_if name="form_hint">
<h2><tmpl_var name="form_hint"></h2>
</tmpl_if>
 
<tmpl_if name="error">
  <div class="error"><tmpl_var name="error"></div>
</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_dyninclude name="content_tpl">
</div>
 
<input type="hidden" name="next_tab" value="">
<input type="hidden" name="phpsessid" value="{tmpl_var name='phpsessid'}">