Wrap your template with this from before the <table> and right after the </table>:
Replace what usergroups you want to allow with the numbers.
Code:
<if condition="is_member_of($bbuserinfo, 5,6,7,9,10)">
</if>
Example:
Code:
<tr>
<td colspan="2">
<div style="margin-top:3px">
<if condition="is_member_of($bbuserinfo, 5,6,7,9,10)">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
...template code...
</table>
</if>
</div>
</td>
</tr>