1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-10 13:22:22 +04:00
Files
tabler/preview/pages/_includes/cards/tables/progressbg.html
T

27 lines
623 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 page in pages %}
<tr>
<td>
<div class="progressbg">
{% include "ui/progress.html" value=page.bounce class="progressbg-progress" color="primary-lt" %}
<div class="progressbg-text">{{ page.uri }}</div>
</div>
</td>
<td class="w-1 fw-bold text-end">{{ page.visitors }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>