{% extends "base.html" %} {% block head %} {% endblock %} {% block body %} {% set typ = func.type %}

{% if typ == 'module' %} Executions of module: {% else %} Function: {% endif %} {% if typ == 'module' %} {{ short_path }} {% else %} {{ func.name }} {% endif %}

Full file path: {{ func.file }}

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

Line: {{ func.lineno }}

{% endif %}

Calls:

{% endif %} {% if calls %} {% if typ == 'function' %} {% endif %} {% for call in calls %} {% if typ == 'function' %} {% endif %} {% endfor %}
Start timeArgumentsResult
{{ 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. Is the function still running?

{% endif %} {% endblock %}