{% if msg %} {{ msg }} {% endif %}
App Name
Model Name and fields
{% for app_name, model_info in model_info.items %}
{{ app_name }}
{% for model, fields in model_info.items %}
{{ model }}
{% for field , f_attrs in fields.items %} {% if forloop.first %}
Name
Required
Field type
Help text
{% endif %}
{{ f_attrs.field_name }}
{% if f_attrs.is_null %} No {% else %} Yes {% endif %}
{{ f_attrs.field_type }}
{{ f_attrs.help_text }}
{% endfor %}
{% endfor %}
{% endfor %} {% comment %} {% for app_name, model_info in model_info.items %} {{ app_name }}
{{ app_name }}
{% for model, fields in model_info.items %}
{{ model }}
{{ fields }}
{% endfor %} {% endfor %} {% endcomment %}