-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathformMaps.ihtml
60 lines (60 loc) · 1.49 KB
/
formMaps.ihtml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{$form.javascript}
<form {$form.attributes}>
<div id="validFormTop">
{if $o == "a" || $o == "c"}
<p class="oreonbutton">
{if isset($form.submitC)}
{$form.submitC.html}
{else}
{$form.submitA.html}
{/if}
{$form.reset.html}
</p>
{else if $o == "w"}
<p class="oreonbutton">
{if isset($form.change)}
{$form.change.html}
{/if}
</p>
{/if}
</div>
<div id='tab1' class='tab'>
<table class="formTable table">
<tr class="ListHeader">
<td class="FormHeader" colspan="2">
<h3>| {$form.header.title}</h3>
</td>
</tr>
<tr class="list_lvl_1">
<td class="ListColLvl1_name" colspan="2">
<h4>{t}General Information{/t}</h4>
</td>
</tr>
<tr class="list_one"><td class="FormRowField"><img class="helpTooltip" name="name">{$form.name.label}</td><td class="FormRowValue">{$form.name.html}</td></tr>
<tr class="list_two">
<td class="FormRowField"><img class="helpTooltip" name="group"> {$form.group_id.label}</td>
<td class="FormRowValue">{$form.group_id.html} </td>
</tr>
</table>
</div>
<div id="validForm">
{if $o == "a" || $o == "c"}
<p class="oreonbutton">
{if isset($form.submitC)}
{$form.submitC.html}
{else}
{$form.submitA.html}
{/if}
{$form.reset.html}
</p>
{else if $o == "w"}
<p class="oreonbutton">
{if isset($form.change)}
{$form.change.html}
{/if}
</p>
{/if}
</div>
{$form.hidden}
</form>
{$helptext}