Code

Added support for optionally taking along members when copying object
[gosa.git] / trunk / gosa-core / plugins / admin / ogroups / paste_generic.tpl
1 <table width='100%'>
2         <tr>
3                 <td width='120'>
4                         <LABEL for="cn">{t}Group name{/t}</LABEL>{$must}
5                 </td>
6                 <td>
7                         <input type='text' id='cn' name='cn' value='{$cn}' size='40' title='{t}Please enter the new object group name{/t}'> 
8                 </td>
9         </tr>
10 </table>
11 <br>
12 {if $copyMembers}
13 <input class="center" type="checkbox" value="1" checked name="copyMembers" id="copyMembers">{t}Inherit Members{/t}<br>
14 <br>
15 {t}Note that settings are copied even if you choose to not inherit members. Those settings will be lost in case different type members get added to the group and will only appear once a new member of the current type is added.{/t}
16 {else}
17 {t}Note that only settings are copied and the new object group will have no members initially. Those settings will be lost in case different type members get added to the group and will only appear once a new member of the current type is added.{/t}
18 {/if}
20 <script language="JavaScript" type="text/javascript">
21         focus_field('cn');
22 </script>