{% extends "base.html" %} {% load humanize profiling_explorer_tags %} {% block main %} ← back {% if heading == "Callers" %}{% else %}{% endif %} {{ heading }} of {{ focal_row.filename }}:{{ focal_row.lineno }} {{ focal_row.funcname }} {% for col in columns %} {{ col.label }} {{ col.indicator }} {% if col.key == "calls" or col.key == "cumulative_ms" %}% {% endif %}{% endfor %} filename:lineno function {% include "_row.html" with row=focal_row stats=focal_row focal=True only %} {% for row, edge in rows_with_edges %} {% include "_row.html" with row=row stats=edge focal=False only %} {% endfor %} {% if next_url %}{% endif %} {% endblock %}