{% extends 'admin-home.html' %} {% block container %}

Hey {{ current_user.username }}!! Below is the list of users in system


{% for user in users %} {% endfor %}
ID Username Is Admin ?
{{ user.id }} {{ user.username }} {{ user.admin }} Edit Delete
{% endblock %}