{% extends "/base.html" %} {% block title %} UI Tables {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %} {% with messages = get_flashed_messages() %} {% if messages %}
{{ messages }}
{% endif %} {% endwith %}
User Table
{% for user in users.items %} {% endfor %}
# User Name Email Roll
{{ user.id }} {{ user.username }} {{ user.email }} {{ user.role }}
{% if users.has_prev %} Previous {% endif %} {% if users.has_next %} Next {% endif %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}