{% block titleBlock %}
{{ title }}
{{ left_tip }}
{{ right_tip }}
{% endblock %}
{% block theadBlock %}
{% endblock %}
{% for group in grouped_fields %}
{% if group.group_title %}
{{ group.group_title }} |
{% endif %}
{% for field in group.fields %}
{{ field.verbose_name }} |
{% if field.is_option_field %}
{% for option in field.value %}
{% if option.selected %}
✓ {{ option.name }}
{% else %}
□ {{ option.name }}
{% endif %}
{% endfor %}
{% else %}
{{ field.value }}
{% endif %}
|
{% endfor %}
{% endfor %}
{% block inTableEnd %}
{% if related_grouped_fields %}
{% for title, groups_list in related_grouped_fields.items %}
{{ title }} |
{% if groups_list %}
{% for groups in groups_list %}
{% for group in groups %}
{% if group.group_title %}
{{ group.group_title }} |
{% endif %}
{% for field in group.fields %}
{{ field.verbose_name }} |
{% if field.is_option_field %}
{% for option in field.value %}
{% if option.selected %}
✓ {{ option.name }}
{% else %}
□ {{ option.name }}
{% endif %}
{% endfor %}
{% else %}
{{ field.value }}
{% endif %}
|
{% endfor %}
{% endfor %}
{% endfor %}
{% else %}
暂无数据 |
{% endif %}
{% endfor %}
|
{% endif %}
{% endblock %}
{% block outTableEnd %}
{% endblock %}