1. Check existence of mb_string, mysql and xml extensions before installation.
[openemr.git] / gacl / admin / templates / phpgacl / edit_group.tpl
blob3498358ebe295c2e4cd1e22eb1037af77113f15d
1 {include file="phpgacl/header.tpl"}
2     <style type="text/css">
3     {literal}
4       select {
5         margin-top: 0px;
6       }
7       input.group-name, input.group-value {
8         width: 99%;
9       }
10     {/literal}
11     </style>
12   </head>
13   <body>
14 {include file="phpgacl/navigation.tpl"}
15     <form method="post" name="edit_group" action="edit_group.php">
16       <table cellpadding="2" cellspacing="2" border="2" width="100%">
17         <tbody>
18           <tr>
19             <th width="4%">ID</th>
20             <th width="32%">Parent</th>
21             <th width="32%">Name</th>
22             <th width="32%">Value</th>
23           </tr>
24           <tr valign="top">
25             <td align="center">{$id|default:"N/A"}</td>
26             <td>
27                 <select name="parent_id" tabindex="0" multiple>
28                     {html_options options=$options_groups selected=$parent_id}
29                 </select>
30             </td>
31             <td>
32                 <input type="text" class="group-name" size="50" name="name" value="{$name}">
33             </td>
34             <td>
35                 <input type="text" class="group-value" size="50" name="value" value="{$value}">
36             </td>
37           </tr>
38           <tr class="controls" align="center">
39             <td colspan="4">
40               <input type="submit" class="button" name="action" value="Submit"> <input type="reset" class="button" value="Reset">
41             </td>
42           </tr>
43         </tbody>
44       </table>
45     <input type="hidden" name="group_id" value="{$id}">
46     <input type="hidden" name="group_type" value="{$group_type}">
47     <input type="hidden" name="return_page" value="{$return_page}">
48   </form>
49 {include file="phpgacl/footer.tpl"}