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

Function: {{ func.name }}

File: {{ func.file }}

{% if calls %}{# if there are no calls then this may not be the most recent function object #}

Line: {{ func.lineno }}

{% endif %}

Calls:

{% if calls %} {% for call in calls %} {% endfor %}
Start time Arguments Result
{{ call.state_icon }} {{ call.pretty_start_time }} {% if call.arguments_list %}
    {% for k, v in call.arguments_list %}
  • {{ k }} = {{ v }}
  • {% endfor %}
{% else %} - {% endif %}
{{ call.result }}
{% else %}

No calls yet

{% endif %} {% endblock %}