{% extends "call_base.html" %} {% block body %} {% set typ = func.type %}

{% if typ == 'module' %} Execution of module: {% else %} Call to function: {% endif %} {% if typ == 'module' %} {{ short_path }} {% else %} {{ func.name }} {% endif %}

{% if typ == 'function' %}

Line: {{ func.lineno }}

{% endif %}

Full file path: {{ func.file }}

{% if typ == 'function' %} {% if call.arguments_list %}

Arguments:

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

No arguments

{% endif %} {% endif %}

Start time: {{ call.pretty_start_time }}

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

{% else %}

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

Code:

{% from 'info_panel.html' import info_panel %}
{% call info_panel() %} Go to newest call {% endcall %}
{% endblock %} {% block after_container %} {% include "call_core.html" %} {% endblock %}