django-vue3-admin-backend/templates/rest_framework/admin/list_value.html
2025-10-20 21:30:27 +08:00

12 lines
241 B
HTML

{% load rest_framework %}
<table class="table table-striped">
<tbody>
{% for item in value %}
<tr>
<th>{{ forloop.counter0 }}</th>
<td>{{ item|format_value }}</td>
</tr>
{% endfor %}
</tbody>
</table>