haikal/templates/crm/employee_calendar.html
Marwan Alwali ec30867916 update
2025-02-11 15:17:42 +03:00

22 lines
537 B
HTML

<!-- crm/employee_calendar.html -->
<h1>Upcoming Test Drives</h1>
<table>
<thead>
<tr>
<th>Customer</th>
<th>Vehicle</th>
<th>Date/Time</th>
<th>Staff</th>
</tr>
</thead>
<tbody>
{% for appointment in appointments %}
<tr>
<td>{{ appointment.client.name }}</td>
<td>{{ appointment.service.name }}</td>
<td>{{ appointment.start_time|date:"M j, Y H:i" }}</td>
<td>{{ appointment.staff.user.get_full_name }}</td>
</tr>
{% endfor %}
</tbody>
</table>