{% extends "base.html" %} {% set active = "compare" %} {% block title %}Compare — Communication DNA{% endblock %} {% block content %}
{{ comparison.error }}
{% else %}| Metric | {{ comparison.speaker1.name }} | {{ comparison.speaker2.name }} |
|---|---|---|
| {{ m.name }} | {% if m.fmt == ',d' %}{{ "{:,}".format(m.v1|int) }}{% else %}{{ "%.2f"|format(m.v1) }}{% endif %} | {% if m.fmt == ',d' %}{{ "{:,}".format(m.v2|int) }}{% else %}{{ "%.2f"|format(m.v2) }}{% endif %} |