Radarr/UI/Shared/Grid/PagerTemplate.html

15 lines
445 B
HTML
Raw Normal View History

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