{% extends "adminlte/base.html" %} {% import "adminlte/layout.html" as layout with context %} {% import "adminlte/widgets.html" as widgets with context %} {% block title %}Admin - {{ title }}{% endblock %} {% block description %}{{ block_description }}{% endblock %} {% block navbar %} {% include "navbar.html" %} {%- endblock navbar %} {% block sidebar -%} {% include 'sidebar.html' %} {% include 'admin/sidebar_menu.html' %} {%- endblock sidebar %} {% block content_header -%} {% include 'admin/content_header.html' %} {%- endblock content_header %} {% block content -%}
{% for user in users %} {% endfor %}
User ID Username Email Created At Role Action
{{ user.id }} {{ user.username }} {{ user.email }} {{ user.created_at }} {{ user.role.name }} Edit | Delete
User ID Username Email Created At Role Action
{%- endblock content %}