| <{includeq file="db:system_header.tpl"}>
<table id="help-system">
    <tr>
        <td class="width20">
            <{if $help}>
                <div class="xo-help-menu">
                    <h2 class="head"><{$modname}></h2>
                    <{foreach item=help from=$help}>
                        <div class="<{cycle values='odd, even'}>"><a href="<{$help.link}>"><{$help.name}></a></div>
                    <{/foreach}>
                </div>
            <{/if}>
            <{if $list_mods}>
                <div class="xo-help-menu">
                    <{foreach item=row from=$list_mods}>
                        <h2 class="head"><{$row.name}></h2>
                        <{foreach item=list from=$row.help_page}>
                            <div class="<{cycle values='odd, even'}>" title="<{$list.name}>"><a href="<{$list.link}>"><{$list.name}></a></div>
                        <{/foreach}>
                    <{/foreach}>
                </div>
            <{/if}>
        </td>
        <td>
            <div id="help-content">
                <{$helpcontent}>
            </div>
        </td>
    </tr>
</table>
 |