<h3>Modifying roles for {$name}</h3>
<form action="?mod=vm&act=adm_default&vm_action=process_acl_modify_user" method="post">
<input type="hidden" name="vol_id" value="{$p_uuid}" />
<table align="center">
<thead>
<tr>
<td>Role</td>
<td>Access</td>
</tr>
</thead>
<tbody>
{foreach $all_roles as $id => $description}
<tr>
<td>{$description}</td>
<td><input type="checkbox" name="acl_roles[]" value="{$id}"
{if in_array($id, $user_roles)}
checked
{/if}
/>
</td>
</tr>
{/foreach}
</tbody>
</table>
<br />
<center>
<input type="submit" value="Save Changes" />
<input type="button" value="Done" onClick="window.location='index.php?mod=vm&act=adm_default&vm_action=display_acl_situations';" />
</center>
</form>