{% if rank is not none %}
Analysis of rank {{ rank|safe }}.
{% endif %}
{{ desc }}
Suggestions |
{% for item in solutions %}
{% set rowloop = loop %}
{% for key, value in item.items() %}
{{ rowloop.index }}. {{ value.desc }} |
{% endfor %}
{% endfor %}
{% if datas|safe %}
The details of top {{ num }} abnormal communication
operators are as follows:
{% for header in headers %}
{{ header }} |
{% endfor %}
{% for row in datas %}
{% for element in row %}
{{ element|safe }} |
{% endfor %}
{% endfor %}
{% endif %}