We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code: total = cursor.rowcount pagination = Pagination(page=page, total=total, search=True, per_page=limit, css_framework='bootstrap3')
html: {% for row in rows %} {{ row[1] }}
<td>{{ row[3] }}</td> <td>{{ row[2] }}</td> <td>{{ row[4] }}</td> <td>{{ row[6] }}</td> <td>{{ row[7] }}</td> <td>{{ row[8] }}</td> <td>{{ row[9] }}</td> <td>{{ row[21] }}</td> <td>{{ row[20] }}</td> </tr> {% endfor %} </tbody> <tr> {{ pagination.info }} {{ pagination.links }} </tr> </table> {{ pagination.info }}{{ pagination.links }} </div>
but we see pagination.info only, and the total is 0, but cursor.rowcount == 9
flask-paginate last version
The text was updated successfully, but these errors were encountered:
you need pass found=found for search pagination, and pagination link is empty if only one page
found=found
Sorry, something went wrong.
No branches or pull requests
Code:
total = cursor.rowcount
pagination = Pagination(page=page, total=total, search=True,
per_page=limit, css_framework='bootstrap3')
html:
{% for row in rows %}
{{ row[1] }}
but we see pagination.info only, and the total is 0, but cursor.rowcount == 9
flask-paginate last version
The text was updated successfully, but these errors were encountered: