This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/themes/default/blocks/db_mapping/group_map_db.tpl
2008-11-26 14:50:40 -08:00

19 lines
672 B
Smarty

<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
{foreach from=$db_mapping_groups item=db_mapping_groups_local}
<tr valign="top">
<td width="35%" height="20">
{$db_mapping_groups_local.name}
</td>
<td width="65%" height="20">
{foreach from=$db_mapping_groups_local.remote item=db_mapping_groups_remote}
<input type="checkbox" name="db_mapping_group_map[{$db_mapping_groups_local.id}][{$db_mapping_groups_remote.id}]" value="1" { if $db_mapping_groups_remote.check != false }checked{/if}>
{$db_mapping_groups_remote.name}
<br>
{/foreach}
<br>
</td>
</tr>
{/foreach}
</table>