{% extends 'base.html' %} {% load static %} {% block title %}Training Management{% endblock %} {% block content %}

Training Management

Employee training programs and certification tracking

{{ total_programs }}

Training Programs

{{ completed_trainings }}

Completed

{{ pending_trainings }}

In Progress

{{ overdue_trainings }}

Overdue

{% for program in training_programs %}
{{ program.title }}
{{ program.get_status_display }}

{{ program.description|truncatewords:20 }}

{{ program.get_category_display }}
{{ program.duration_hours }}h duration
{{ program.enrolled_count }} enrolled
{% if program.is_mandatory %}
Mandatory
{% endif %}
{{ program.completion_rate }}% completion rate
{% empty %}
No training programs found

Create your first training program to get started.

{% endfor %}
{% for session in training_sessions %} {% empty %} {% endfor %}
Session Program Date & Time Instructor Attendees Location Status Actions
{{ session.title }}
{{ session.session_code }}
{{ session.program.title }}
{{ session.start_datetime|date:"M d, Y" }}
{{ session.start_datetime|time:"H:i" }} - {{ session.end_datetime|time:"H:i" }}
{% if session.instructor %}
{{ session.instructor.first_name|first }}{{ session.instructor.last_name|first }}
{{ session.instructor.get_full_name }}
{% else %} Not assigned {% endif %}
{{ session.attendee_count }}/{{ session.max_attendees }}
{{ session.location|default:"TBD" }} {{ session.get_status_display }}
No training sessions scheduled

Schedule your first training session.

{% for cert in certifications %} {% empty %} {% endfor %}
Employee Certification Type Issued Date Expiry Date Status Actions
{% if cert.employee.photo %} {{ cert.employee.get_full_name }} {% else %}
{{ cert.employee.first_name|first }}{{ cert.employee.last_name|first }}
{% endif %}
{{ cert.employee.get_full_name }}
{{ cert.employee.job_title }}
{{ cert.certification_name }}
{{ cert.issuing_organization }}
{{ cert.get_certification_type_display }} {{ cert.issue_date|date:"M d, Y" }} {% if cert.expiry_date %} {{ cert.expiry_date|date:"M d, Y" }} {% else %} No expiry {% endif %} {{ cert.get_status_display }}
{% if cert.is_expiring_soon %} {% endif %}
No certifications found

Add employee certifications to track compliance.

Compliance Overview
{{ compliance_rate }}%
Overall Compliance
{{ expiring_soon_count }}
Expiring Soon
Department Compliance
{% for dept in department_compliance %}
{{ dept.name }}
{{ dept.compliance_rate }}%
{% endfor %}
Compliance Alerts
{% if compliance_alerts %}
{% for alert in compliance_alerts %} {% endfor %}
Employee Requirement Due Date Priority Actions
{{ alert.employee.get_full_name }} {{ alert.requirement }} {{ alert.due_date|date:"M d, Y" }} {{ alert.get_priority_display }}
{% else %}
All Clear!

No compliance alerts at this time.

{% endif %}
{% endblock %} {% block js %} {% endblock %}