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

Staff List

{% for record in staffs_list %} {% endfor %}
ID Name Department Designation Phone Email Date of Join Action
{{record.ID}} {{record.Department}} {{record.Designation}} {{record.Phone}} {{record.Email}} {{record.Date_of_Join}}
{% endblock content %}