This commit is contained in:
2026-05-15 18:33:51 +02:00
parent 3601be572f
commit c980004309
8442 changed files with 783630 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
<div style="width:100%;text-align:center;">
{if $PageCount < 2 }
&nbsp;
{else}
{if $CurrentPage > 1}
<a href="{$URLParam.0},{$CurrentPage-1},{$URLParam.1}.frmx">Poprzednia Strona</a>
{/if}
{section name=page loop=$PageCount}
{if ($CurrentPage == $smarty.section.page.rownum)}
<b>{$smarty.section.page.rownum}</b>
{else}
<a href="{$URLParam.0},{$smarty.section.page.rownum},{$URLParam.1}.frmx">{$smarty.section.page.rownum}</a>
{/if}
{/section}
{if $CurrentPage < $PageCount}
<a href="{$URLParam.0},{$CurrentPage+1},{$URLParam.1}.frmx">Nastêpna Strona</a>
{/if}
{/if}
</div>