1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 09:24:24 +04:00
Files
tabler/shared/includes/cards/tables/progressbg.html
Paweł Kuna 9c5d729e6d Add progress page (#2494)
Co-authored-by: ethancrawford <ethan_jc@hotmail.com>
2025-09-19 23:06:55 +02:00

24 lines
488 B
HTML

<div class="card">
<div class="card-body">
<h3 class="card-title">Top Pages</h3>
<table class="table table-sm table-borderless">
<thead>
<tr>
<th>Page</th>
<th class="text-end">Visitors</th>
</tr>
</thead>
<tbody>
{% for url in urls %}
<tr>
<td>
{% include "ui/progressbg.html" value=url.bounce text=url.uri %}
</td>
<td class="w-1 fw-bold text-end">{{ url.visitors }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>