1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Shared/Grid/PagerTemplate.html

15 lines
445 B
HTML
Raw Normal View History

2013-06-08 03:31:08 +03:00
<ul>
{{#each handles}}
2013-07-18 00:53:25 +03:00
<li {{#if className}}class="{{className}}"{{/if}} >
2013-06-08 03:31:08 +03:00
{{#if pageNumber}}
2013-07-18 00:53:25 +03:00
<span>{{pageNumber}} / {{lastPage}}</span>
2013-06-08 03:31:08 +03:00
{{else}}
2013-06-19 09:33:16 +03:00
<i class="pager-btn clickable {{label}}" data-action="{{action}}"/>
2013-06-08 03:31:08 +03:00
{{/if}}
</li>
{{/each}}
</ul>
2013-07-18 00:53:25 +03:00
<span class="total-records">
Total Records: {{Number state.totalRecords}}
</span>