{% include "header.html" %}

Faculty Details

Name: {{ faculty.faculty_name }}
Email: {{ faculty.email }}
Contact: {{ faculty.contact }}
Experience: {{ faculty.experience }} years
Date of Birth: {{ faculty.date_of_birth|date:"d/m/Y" }}
Status: {{ faculty.status }}
Joined Date {{ faculty.created_at|date:"d/m/Y" }}
Time Slot Available Details
{% for day, slots in time_slots_list %}
{% for slot in slots %} {% empty %} {% endfor %}
Priority Start Time End Time Action
{{ slot.start_time }} {{ slot.end_time }}
No time slots available.
{% endfor %}
{% for detail in faculty_details %} {% empty %} {% endfor %}
Sr. No Exam Topic Expertise Action
{{ forloop.counter }} {{ detail.selected_exams.exam_category_name }} {{ detail.topic_expertise.topic_name }}
No exam and topic expertise assigned yet.
Faculty Leave Details
{% if faculty_leaves %} {% for leave in faculty_leaves %} {% endfor %} {% else %} {% endif %}
Sr. No From Date To Date Created At Action
{{ forloop.counter }} {{ leave.from_date|date:"d/m/Y" }} {{ leave.to_date|date:"d/m/Y" }} {{ leave.created_at|date:"d/m/Y" }}
No faculty leaves added yet.
{%include "sidebar.html"%}
{% include "footer.html" %}