forked from mirrors/pronouns.cc
feat: add page buttons below member list too
This commit is contained in:
parent
6f7eb5eeee
commit
6ae6ea5496
1 changed files with 13 additions and 0 deletions
|
@ -241,6 +241,19 @@
|
|||
<PartialMemberCard user={data} {member} />
|
||||
{/each}
|
||||
</div>
|
||||
{#if totalPages > 1}
|
||||
<div class="text-center">
|
||||
<ButtonGroup>
|
||||
<Button on:click={prevPage} disabled={memberPage === 0}
|
||||
><Icon name="chevron-left" /> Previous page</Button
|
||||
>
|
||||
<Button disabled>Page {memberPage + 1}/{totalPages}</Button>
|
||||
<Button on:click={nextPage} disabled={memberPage === totalPages - 1}
|
||||
>Next page <Icon name="chevron-right" /></Button
|
||||
>
|
||||
</ButtonGroup>
|
||||
</div>
|
||||
{/if}
|
||||
{:else}
|
||||
<div>
|
||||
<p>
|
||||
|
|
Loading…
Reference in a new issue