Forum OpenACS Development: Proposal to move bottom paginator links after bulk action buttons

When a list template is too large and the paginator appears, the bottom links with page numbers appears before the bulk action buttons, next to the data table. But the top buttons (before the table) appear after the paginator, next to the table. I think that makes sense to keep buttons next to the table. It now looks something like...

<div class="list-paginator-top" title="list-paginator-top">
&lt; 1 2 3 4 &gt;
</div>
<div class="list-button-bar-top" title="list-button-bar-top">
action 1 action 2 action 3
</div>
<table border="1" title="template-list data table">
<tr>
<th>
TH 1
</th>
<th>
TH 2
</th>
<th>
TH 3
</th>
<th>
...
</th>
</tr>
<tr>
<td>
TD 1.1
</td>
<td>
TD 1.2
</td>
<td>
TD 1.3
</td>
<td>
...
</td>
</tr>
<tr>
<td>
TD 2.1
</td>
<td>
TD 2.2
</td>
<td>
TD 2.3
</td>
<td>
...
</td>
</tr>
<tr>
<td>
...
</td>
<td>
...
</td>
<td>
...
</td>
<td>
...
</td>
</tr>
<tr>
<td>
TD N.1
</td>
<td>
TD N.2
</td>
<td>
TD N.3
</td>
<td>
...
</td>
</tr>
</table>
<div class="list-paginator-bottom" title="list-paginator-bottom">
<div style="margin-left: 2em" class="compact list-paginator">
&lt; 1 2 3 4 &gt;
</div>
</div>
<div class="list-button-bar-bottom" title="list-button-bar-bottom">
bulk action 1 bulk action 2 bulk action 3
</div>

My proposal is to move the div with class "list-button-bar-bottom" just after the table, before the paginator stuff, to keep bulk action buttons next to that table, to get something like...

<div class="list-paginator-top" title="list-paginator-top">
&lt; 1 2 3 4 &gt;
</div>
<div class="list-button-bar-top" title="list-button-bar-top">
action 1 action 2 action 3
</div>
<table border="1" title="template-list data table">
<tr>
<th>
TH 1
</th>
<th>
TH 2
</th>
<th>
TH 3
</th>
<th>
...
</th>
</tr>
<tr>
<td>
TD 1.1
</td>
<td>
TD 1.2
</td>
<td>
TD 1.3
</td>
<td>
...
</td>
</tr>
<tr>
<td>
TD 2.1
</td>
<td>
TD 2.2
</td>
<td>
TD 2.3
</td>
<td>
...
</td>
</tr>
<tr>
<td>
...
</td>
<td>
...
</td>
<td>
...
</td>
<td>
...
</td>
</tr>
<tr>
<td>
TD N.1
</td>
<td>
TD N.2
</td>
<td>
TD N.3
</td>
<td>
...
</td>
</tr>
</table>
<div class="list-button-bar-bottom" title="list-button-bar-bottom">
bulk action 1 bulk action 2 bulk action 3
</div>
<div class="list-paginator-bottom" title="list-paginator-bottom">
<div style="margin-left: 2em" class="compact list-paginator">
&lt; 1 2 3 4 &gt;
</div>
</div>

If that feature is approved, I can do the change in acs-templating/ resources/lists/table.adp

Looks the right your proposal. You can TIP it!
Sounds more like a bug to me. I don't see any need for a TIP to make the pages usable.
I have crated a new bug (#3172: Bottom bulk actions buttons after paginator). I have committed the change on HEAD, and also uploaded a patch to the bug tracker.