Files
django-vue3-admin/backend/templates/rest_framework/admin/dict_value.html
T
2026-03-19 20:03:10 +08:00

12 lines
242 B
Python

{% load rest_framework %}
<table class="table table-striped">
<tbody>
{% for k, v in value|items %}
<tr>
<th>{{ k|format_value }}</th>
<td>{{ v|format_value }}</td>
</tr>
{% endfor %}
</tbody>
</table>