';
foreach ($context['membergroups'] as $membergroup)
echo '
', $membergroup['name'], '
', $membergroup['can_be_additional'] ? '' : '', '
';
echo '
', $txt['check_all'], '
', $txt['membergroups_postgroups'], '
';
foreach ($context['postgroups'] as $postgroup)
echo '
', $postgroup['name'], '
';
echo '
', $txt['check_all'], '
';
}
/**
* The admin member list.
*/
function template_admin_browse()
{
global $context, $scripturl, $txt;
template_show_list('approve_list');
// If we have lots of outstanding members try and make the admin's life easier.
if ($context['approve_list']['total_num_items'] > 20)
{
echo '
';
}
}
?>