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

16 lines
346 B
HTML

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