{% macro render_mapping(mapping, entity=None) -%} {% set entity = entity or mapping.left %} {% if entity and mapping.get_other(entity) %} {{ ((mapping.score or 1.0) * 100) | round(1, 'floor') }} {{ entity.name }} {{ mapping.get_other(entity).name }} {% for label, enval, otval in mapping_compare(entity, mapping) %} {{label}} {{enval or ''}} {{otval or ''}} {% endfor %} Source {{entity.origin}} {{mapping.get_other(entity).origin}} {% endif %} {%- endmacro %} {% macro render_header() -%} Are these the same? Yes No Unsure {%- endmacro %}