{% extends "base.html" %} {% block head %} {% endblock %} {% block body %}

Call to function: {{ func.name }}

Full path: {{ func.file }}

Line: {{ func.lineno }}

{% if call.arguments_list %}

Arguments:

{% for k, v in call.arguments_list %} {% endfor %}
{{ k }} {{ v }}
{% else %}

No arguments

{% endif %}

Start time: {{ call.pretty_start_time }}

Result: {% if call.success %} {{ call.result }}

{% else %}

{{ call.traceback }}
{% endif %}

Code:

{{ func.html_body | safe }}

    
{% endblock %}