{% extends "partials/base.html" %} {% load static %} {% block content %}
{% block title %} {% include "partials/title.html" with title="Users" text="Dashboard" textone="User Management" texttwo="Users" %} {% endblock title %}

Users List

{% for record in users %} {% endfor %}
ID Name Class Section Date of Joined Status Action
{{record.ID}} {{record.Class}} {{record.Section}} {{record.Date_of_Joined}} {{record.Status}}
{% endblock content %}