mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(routers.accounts): correct disable decision for More button
Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
2baf061b96
commit
b27dab99d8
2 changed files with 6 additions and 5 deletions
|
@ -64,11 +64,11 @@
|
|||
<input type="hidden" name="O"
|
||||
value="{{ offset + pp }}" />
|
||||
{% for k, v in params.items() %}
|
||||
<input type="hidden" name="{{ k }}"
|
||||
value="{{ v }}" />
|
||||
<input type="hidden" name="{{ k }}" value="{{ v }}" />
|
||||
{% endfor %}
|
||||
|
||||
<button type="submit" class="button page-next"
|
||||
{% if offset + pp >= total_users %}
|
||||
{% if (offset + pp) >= total_users %}
|
||||
disabled
|
||||
{% endif %}
|
||||
>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue