<table id="selExecutors" class="pab_con">
|
[#if groupList??&&groupList?size>0]
|
[#list groupList as group]
|
<tr><th><input name="checkbox" value="${group.id}" class="pos" type="radio" /> <span>${group.name}</span></th><td>
|
[#assign userList=group.dataList]
|
[#if userList??&&userList?size>0]
|
[#list userList as user]
|
<div class="pabitem">
|
<span>${user.USER_NAME} </span>
|
</div>
|
[/#list]
|
[/#if]
|
</td></tr>
|
[/#list]
|
[/#if]
|
</table>
|