38086-vm/hr/templates/hr/leave_list.html
2026-02-05 13:35:04 +00:00

53 lines
2.2 KiB
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block content %}
<div class="container-fluid">
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">{% trans "Leave Requests" %}</h1>
<a href="{% url 'hr:leave_add' %}" class="d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm">
<i class="fas fa-plus fa-sm text-white-50"></i> {% trans "New Request" %}
</a>
</div>
<div class="card shadow mb-4">
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" width="100%" cellspacing="0">
<thead>
<tr>
<th>{% trans "Employee" %}</th>
<th>{% trans "Type" %}</th>
<th>{% trans "Start Date" %}</th>
<th>{% trans "End Date" %}</th>
<th>{% trans "Duration (Days)" %}</th>
<th>{% trans "Status" %}</th>
</tr>
</thead>
<tbody>
{% for leave in leaves %}
<tr>
<td>{{ leave.employee }}</td>
<td>{{ leave.get_leave_type_display }}</td>
<td>{{ leave.start_date }}</td>
<td>{{ leave.end_date }}</td>
<td>{{ leave.duration_days }}</td>
<td>
<span class="badge badge-{% if leave.status == 'approved' %}success{% elif leave.status == 'rejected' %}danger{% else %}warning{% endif %}">
{{ leave.get_status_display }}
</span>
</td>
</tr>
{% empty %}
<tr>
<td colspan="6" class="text-center">{% trans "No leave requests found." %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endblock %}