Shaarli_bm_theme/shaarli-pro/linklist.paging.html

32 lines
1.1 KiB
HTML

{if="isset($result_count) && $result_count > 0"}
{$total=$result_count}
{else}
{if="$is_logged_in"}
{$total="$linkcount"}
{else}
{if="empty($privateLinkcount)"}
{$total="$linkcount"}
{else}
{$total=$linkcount - $privateLinkcount}
{/if}
{/if}
{/if}
{$from=($page_current - 1) * $links_per_page + 1}
{$to=min($total, ($page_current - 1) * $links_per_page + $links_per_page)}
{if="!empty($search_tags) && stripos($search_tags, 'note') !== false"}
{$paging_label="Notes"}
{else}
{$paging_label="Bookmarks"}
{/if}
<div class="paging{if="$page_max <=1"} single-page{/if}">
{if="$page_max > 1"}
<div class="paging-links">
{if="$next_page_url"}<a href="{$next_page_url}" class="paging-newer" title="Newer"><i class="mdi mdi-chevron-left"></i></a>{/if}
<div class="paging-current">page <strong>{$page_current}</strong> / {$page_max}</div>
{if="$previous_page_url"}<a href="{$previous_page_url}" class="paging-older" title="Older"><i class="mdi mdi-chevron-right"></i></a>{/if}
</div>
{/if}
<div class="paging-stats">
{$paging_label} <strong>{$from}</strong> - <strong>{$to}</strong> / <strong>{$total}</strong>
</div>
</div>