{% for field in fields %}
  • {{ field.name }}: ({{ field.type }}) {% if field.required %} R {% endif %} {% if field.to_many_relation %} Массив объектов {% endif %} {% if field.label or field.description %}— {% if field.label %}"{{ field.label }}"{% if field.description %}: {% endif %}{% endif %} {% if field.description %}"{{ field.description }}"{% endif %} {% else %} "Разработчик забыл добавить описание ;((" {% endif %} {% if field.choices_fields %}
      {% for choice, value in field.choices_fields.items %}
    • {{ choice }}: {{ value }}
    • {% endfor %}
    {% endif %} {% if field.sub_fields %} {% include "drf_auto/blocks/subfields_list.html" with fields=field.sub_fields %} {% endif %}
  • {% endfor %}