Code

Removed image
[gosa.git] / gosa-plugins / opsi / admin / opsi / properties.tpl
1 <h2>{t}Opsi product properties{/t}</h2>
4 {if $cfg_count == 0}
5 <br>
6 <b>{t}This OPSI product has no options.{/t}</b>
7 <br>
8 <br>
10 {else}
12 <table>
13 {foreach from=$cfg item=item key=key}
14         <tr>
15                 <td>{$key}</td>
16                 <td><input type='input' name='value_{$key}' value="{$item}"></td>
17         </tr>
18 {/foreach}
19 </table>
21 {/if}
22 <p class="seperator">&nbsp;</p>
23 <div style='width:100%; text-align: right; padding:3px;'>
24 {if $cfg_count != 0}
25         <input type='submit' name='save_properties' value='{msgPool type='saveButton'}'>
26         &nbsp;
27 {/if}
28         <input type='submit' name='cancel_properties' value='{msgPool type='cancelButton'}'>
29 </div>