#
{% extends 'layout.html' %} #继承母版 {% block content %} <table class="table table-bordered table-hover"> <tbody> {% for user in users %} <tr> <td>{{ user.name }}</td> <td>{{ user.pwd }}</td> </tr> {% endfor %} </tbody> </table> <div class="text-center"> <nav aria-label="Page navigation"> <ul class="pagination"> {{ page_html|safe }} #safe的运用 </ul> </nav> </div> {% endblock %}