mirror of
https://github.com/huge-dream/django-vue3-admin.git
synced 2026-09-23 21:18:07 +00:00
16 lines
346 B
Python
16 lines
346 B
Python
{% load rest_framework %}
|
|
|
|
<fieldset>
|
|
{% if field.label %}
|
|
<legend {% if style.hide_label %}class="sr-only"{% endif %}>
|
|
{{ field.label }}
|
|
</legend>
|
|
{% endif %}
|
|
|
|
{% for nested_field in field %}
|
|
{% if not nested_field.read_only %}
|
|
{% render_field nested_field style=style %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</fieldset>
|