{% extends 'hrms/layout.html' %} {% load static %} {% block title %} Department Info | ITSC-HRMS {% endblock title %} {% block content %}
{{dept.name | capfirst}} Department Update Info

Brief History

{{dept.history}}

Associated Employees

{% if employees %} {% for employee in employees %}
{{employee.first_name}}

{{employee.last_name|capfirst}}.{{employee.first_name|slice:1}}

({{employee.emp_id|capfirst}})

{% endfor %} {% else %}

No Associated Employee

{% endif %}
{% endblock content %}