{% extends 'base.html' %} {%- block head %} {% endblock -%} {% 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


{% if profiledata_count <= 20 -%}

Top {{ profdata['data']|length }} functions data

{% else -%}

Top {{ profdata['data']|length }} functions data   all function » {%- else -%} index.html">top 20 function » {%- endif -%}

{%- endif %} {% for item in profdata['data'] -%} {%- if item['func'][0] == '~' %} {%- else %} {% else %} {{ item['func'][0]|escape }} : {{ item['func'][1] }} ( {{ item['func'][2]|escape }} ) {% endif %} {%- else %} {{ item['func'][0]|escape }} : {{ item['func'][1] }} ( {{ item['func'][2]|escape }} ) {%- endif %} {%- endif %} {% endfor -%}
ncalls tottime percall cumtime percall filename:lineno(function)
{{ item['ncalls'] }} {{ item['tottime'] }} {{ item['totpercall'] }} {{ item['cumtime'] }} {{ item['cumpercall'] }}{{ item['func'][2]|escape }} {%- if profile_datatype == 'hotshot(line)' %} {% if item['linelink'][0] != "<" %} {{ item['func'][0]|escape }} : {{ item['func'][1] }} ( {{ item['func'][2]|escape }} )
{% endblock %}