38 lines
1.3 KiB
HTML
38 lines
1.3 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>
|
|
{loop="$action_plugin"}
|
|
<div class="paging-plugin">
|
|
{$plugin_html=$value.html}
|
|
<a {loop="$value.attr"}{$key}="{$value}"{/loop}>{$plugin_html}</a>
|
|
</div>
|
|
{/loop}
|
|
</div> |