Django_Basic_Manufacturing_3/templates/components/table.html
2025-08-22 17:05:22 +07:00

25 lines
717 B
HTML

<!-- Reusable Table Component -->
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead class="table-dark">
<tr>
{% for header in headers %}
<th>{{ header }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in rows %}
<tr>
{% for cell in row %}
<td>{{ cell }}</td>
{% endfor %}
</tr>
{% empty %}
<tr>
<td colspan="{{ headers|length }}" class="text-center">No data available</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>