Files
django-vue3-admin/backend/templates/rest_framework/admin/detail.html
2024-06-18 12:46:57 +08:00

11 lines
306 B
Python

{% 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>