Relations to {{ title }}
{% for relatant in relatants.values %}
{% if relatant.ID == 'not found' %}
{% if relatant.Name %}
{{ relation }}: {{ relatant.Name }}
{% else %}
{{ relation }}: MISSING {{ class }} NAME
{% endif %}
{% if relatant.Description %}
{% if relatant.Description|length > 250 %}
({{ relatant.Description }}) — SHORT DESCRIPTION TOO LONG
{% elif relatant.Description == relatant.Name %}
({{ relatant.Description }}) — NAME AND SHORT DESCRIPTION MUST BE DIFFERENT
{% else %}
({{ relatant.Description }})
{% endif %}
{% else %}
— MISSING {{ class }} SHORT DESCRIPTION
{% endif %}
{% else %}
{{ relation }}: {{ relatant.ID }}
{% endif %}
{% empty %}
{% if empty_msg == "True" %}
MISSING {{ class }}
{% else %}
NOT DOCUMENTED
{% endif %}
{% endfor %}