{% extends 'base.html' %} {% block content %}
Profile Time on {{proftime}}
Reported Time on {{reporttime}}

Profile Info

Profile Data Type: {{profile_datatype}}
Total Time: {{profdata['totaltime']}} CPU second
Total Func Call: {{profdata['totalcalls']}} function calls


Function Caller Table   All function »

{%- for items in callers_data %} {% for item in items %} {% if item['dst_function'] != '' %} {% endif %} {%- endfor %} {%- endfor %}
Dest filename:lineno(function) ncalls tottime cumtime Orig filename:lineno(function)
{{ item['dst_function']|escape }}{{ item['ncalls'] }} {{ item['tottime'] }} {{ item['cumtime'] }} {{ item['org_function']|escape }}
{% endblock %}