Hello
I am integrating JForum into other project. So I need to change much links in html templates. And one problem occured: I can't change links at group list page in administrative area for child groups (not top-level groups).
Here is a code from group_list.html
<#list 0..len as i>
<#assign node = groups.get(i)>
<#global level = 0>
<tr>
<td class=row1 ><SPAN class=gen>
${node.name}</SPAN></td>
<td class=row2><span class="gen">${I18n.getMessage("Groups.List.Edit")}</span></td>
<td class="row2"><input type="checkbox" name="group_id" value="${node.id}"></td>
<td class=row2><span class="gen">${I18n.getMessage("Permissions")}</span></td>
</tr>
<@lib.listGroups node/>
</#list>
Could you explain me how works <@lib.listGroups node/> directive and how I can change resulting html code returned by this directive?
I will be grateful for any information
[originally posted on jforum.net by NewTon]