-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabbed_form.tpl.htm
More file actions
41 lines (38 loc) · 1.28 KB
/
tabbed_form.tpl.htm
File metadata and controls
41 lines (38 loc) · 1.28 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<tmpl_if name="form_hint">
<div class='page-header'>
<h1><tmpl_var name="form_hint"></h1>
</div>
</tmpl_if>
<tmpl_if name="msg">
<div class='alert alert-notification'>
<tmpl_var name="msg">
</div>
</tmpl_if>
<tmpl_if name="error">
<div class='alert alert-danger clear'>
<div class='alert-label'><strong><tmpl_var name="error_txt"></strong></div>
<div class='alert-content'>
<ol><tmpl_var name="error"></ol>
</div>
</div>
</tmpl_if>
<!-- content in tabs -->
<div class='content-tab-wrapper'>
<!-- tabs -->
<ul class='nav nav-tabs'>
<tmpl_loop name="formTab">
<li<tmpl_if name="active"> class='active'</tmpl_if>>
<a href='#' onclick="return ISPConfig.changeTab('<tmpl_var name='name'>','<tmpl_var name='app_module'>/<tmpl_var name='form_action'>')"><tmpl_var name='title'></a>
</li>
</tmpl_loop>
</ul>
<div id="tabbox_content" class="tab-content">
<div class='tab-pane active fade in'>
<tmpl_dyninclude name="content_tpl">
</div>
</div>
<input type="hidden" name="_csrf_id" value="{tmpl_var name='_csrf_id'}" />
<input type="hidden" name="_csrf_key" value="{tmpl_var name='_csrf_key'}" />
<input type="hidden" name="next_tab" value="">
<input type="hidden" name="phpsessid" value="{tmpl_var name='phpsessid'}">
</div>