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

11 lines
306 B
HTML

{% load rest_framework %}
<table class="table table-striped">
<tbody>
{% for key, value in results|items %}
{% if key in details %}
<tr><th>{{ key|capfirst }}</th><td {{ value|add_nested_class }}>{{ value|format_value }}</td></tr>
{% endif %}
{% endfor %}
</tbody>
</table>