28 lines
828 B
HTML
28 lines
828 B
HTML
<div class="table-responsive">
|
|
<table class="table table-sm table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th scope="colgroup" colspan="4" class="text-center h3">Visits overview</th>
|
|
</tr>
|
|
<tr>
|
|
<th scope="col">Type</th>
|
|
<th scope="col">Date</th>
|
|
<th scope="col">Time</th>
|
|
<th scope="col">Pets</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody class="table-group-divider">
|
|
{% for visit in user_book_history %}
|
|
<tr>
|
|
<td>{{ visit.visit_type.value }}</td>
|
|
<td>{{ visit.get_date() }}</td>
|
|
<td>{{ visit.get_time() }}</td>
|
|
<td>{{ visit.dogs }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|