Overview
Comment:Add pagination on top of users list
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA3-256: ad20d4be33414cf735bda8aa433e673cb6a656345c808a35bacb99c594a051e9
User & Date: bohwaz on 2022-01-04 21:58:58
Other Links: manifest | tags
Context
2022-01-04
22:10
Improve date picker for mobiles check-in: 7dfa936972 user: bohwaz tags: trunk, stable
21:58
Add pagination on top of users list check-in: ad20d4be33 user: bohwaz tags: trunk, stable
21:55
Improve date picker widget: allow to select month and year from calendar, auto-complete the text input, and make it more accessible and easier to close check-in: 14d9a17071 user: bohwaz tags: trunk, stable
Changes

Modified src/templates/admin/membres/index.tpl from [b40cd2743c] to [99c33965df].

31
32
33
34
35
36
37


38
39
40
41
42
43
44
        <input type="submit" value="Chercher &rarr;" />
    </fieldset>
</form>

<form method="post" action="action.php" class="memberList">

{if $list->count()}


    {include file="common/dynamic_list_head.tpl" check=$can_edit}

    {foreach from=$list->iterate() item="row"}
        <tr>
            {if $can_edit}
                <td class="check">{input type="checkbox" name="selected[]" value=$row._user_id}</td>
            {/if}







>
>







31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
        <input type="submit" value="Chercher &rarr;" />
    </fieldset>
</form>

<form method="post" action="action.php" class="memberList">

{if $list->count()}
    {pagination url=$list->paginationURL() page=$list.page bypage=$list.per_page total=$list->count()}

    {include file="common/dynamic_list_head.tpl" check=$can_edit}

    {foreach from=$list->iterate() item="row"}
        <tr>
            {if $can_edit}
                <td class="check">{input type="checkbox" name="selected[]" value=$row._user_id}</td>
            {/if}