{% if pagination.css_framework == "bootstrap5" %} {% extends 'base5.html' %} {% else %} {% extends "base.html" %} {% endif %} {% block body %} {% if users %} {{ pagination.info }} {{ pagination.links }}
{% for user in users %} {% endfor %}
#User Name
{{ loop.index + pagination.skip }} {{ user.name }}
{{ pagination.links }} {% endif %} {% endblock %} {% block js %} var element = document.getElementById("{{ active_url or 'users-url'}}"); element.children[0].classList.add("active"); {% endblock %}