Here is the code for the next lecture:
<div class="overflow-x-auto">
<table class="w-full text-sm text-left text-gray-500 dark:text-gray-400">
<thead class="text-xs text-gray-700 uppercase dark:bg-gray-700 dark:text-gray-400">
<tr class="border">
<th scope="col" class="py-3 px-6">
#
</th>
<th scope="col" class="py-3 px-6">
customer
</th>
<th scope="col" class="py-3 px-6">
isbn
</th>
<th scope="col" class="py-3 px-6">
status
</th>
<th scope="col" class="py-3 px-6">
start
</th>
<th scope="col" class="py-3 px-6">
end
</th>
<th scope="col" class="py-3 px-6">
return
</th>
<th scope="col" class="py-3 px-6">
is closed
</th>
</tr>
</thead>
<tbody>
{% for obj in object_list %}
<tr class="border-b dark:bg-gray-800 dark:border-gray-700">
<td scope="row" class="py-4 px-6 font-medium text-gray-900 dark:text-white">
</td>
<td class="py-4 px-6">
</td>
<td class="py-4 px-6">
</td>
<td class="py-4 px-6">
</td>
<td class="py-4 px-6">
</td>
<td class="py-4 px-6">
</td>
<td class="py-4 px-6">
</td>
<td class="py-4 px-6">
</td>
</tr>
{% endfor %}
</tbody>
</table>