Property |
Primary ({{target1_data.name}}) |
Secondary ({{target2_data.name}}) |
Result |
{% for key,value1,value2 in combined_target_data %}
{# these if statements filter out the rows without data #}
{% if value1 or value2 %}
{% if value1 != 'None' or value2 != 'None' %}
{{ key }} |
{{ value1 }} |
{{ value2 }} |
{% if value1 and value1 != 'None'%}
{{ value1 }} |
{% else %}
{{ value2 }} |
{% endif %}
{% endif %}
{% endif %}
{% endfor %}