-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathnumber-pagination.hbs
38 lines (38 loc) · 1.07 KB
/
number-pagination.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<div class="au-c-pagination">
<p>
<span class="au-u-hidden-visually">Rij </span><strong>{{this.startItem}}
-
{{this.endItem}}</strong>
van
{{this.totalItems}}
</p>
<ul class="au-c-pagination__list">
{{#if this.hasMultiplePages}}
{{#unless this.isFirstPage}}
<li class="au-c-pagination__list-item">
<AuButton
@skin="link"
@icon={{this.NavLeftIcon}}
{{action "changePage" this.links.prev}}
>
vorige
<span class="au-u-hidden-visually"> {{this.pageSize}} rijen</span>
</AuButton>
</li>
{{/unless}}
{{#unless this.isLastPage}}
<li class="au-c-pagination__list-item">
<AuButton
@skin="link"
@icon={{this.NavRightIcon}}
@iconAlignment="right"
{{action "changePage" this.links.next}}
>
volgende
<span class="au-u-hidden-visually"> {{this.pageSize}} rijen</span>
</AuButton>
</li>
{{/unless}}
{{/if}}
</ul>
</div>