Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<!-- $Id: navigation.tpl 1038 2009-01-06 10:41:30Z tiefland $ -->
{if $p_anz > 1}
<form name="navi" method="get" action="{$SCRIPT_NAME}">
    <table cellpadding="0" cellpadding="0" border="1" width="100%">
        <tr class="links">
            <td colspan="3" align="center">Seitennavigation</td>
        </tr>
        <tr class="rechts">
            <td width="10%" >
            {if $cur_page > 1 && $cur_page <= $p_anz}
                <a href="{$SCRIPT_NAME}?p_id={$cur_page-1}">zur&uuml;ck</a>
            {else}
                &nbsp;
            {/if}
            </td>
            <td width="80%" align="center">
                Seite
                <select name="p_id" onchange="submit(this);">
                    {html_options options=$pages selected=$cur_page}
                </select>
                von {$p_anz}
            </td>
            <td width="10%" >
            {if $cur_page < $p_anz}
                <a href="{$SCRIPT_NAME}?p_id={$cur_page+1}">weiter</a>
            {else}
                &nbsp;
            {/if}
            </td>
        </tr>
    </table>
    <input type="hidden" name="sort" value="{$cur_sort}">
    <input type="hidden" name="dir" value="{$cur_dir}">
</form>
{/if}