mirror of
https://github.com/huge-dream/django-vue3-admin.git
synced 2026-09-27 14:52:52 +00:00
12 lines
242 B
Python
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>
|