22 lines
537 B
HTML
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> |