1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-05 03:02:59 +00:00
Sonarr/UI/Shared/Grid/PagerTemplate.html

15 lines
445 B
HTML
Raw Normal View History

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