{% extends "base.html" %} {% from '_helpers.html' import backtrace_table_columns %} {% block title %}Reports diff #{{lhs.id}} #{{rhs.id}}{% endblock %} {% block body %} Differences between backtraces from report - {{lhs.id}} and backtrace from report + {{rhs.id}}
{% if type != 'python' %} {% endif %} {% for l, r in diff %} {% if l and not r %} {% endif %} {% if not l and r %} {% endif %} {% if not l and not r %} {% if type != 'python' %} {% endif %} {% endif %} {% endfor %}
Frame # FunctionBinarySource Line
-
+
{% endif %} {% if l and r %}
{% endif %} {% if l %} {{ backtrace_table_columns(l, lhs.type) }} {% endif %} {% if not l and r %} {{ backtrace_table_columns(r, rhs.type) }} {% endif %} {% if not l and not r %}
{% endblock %}