{% extends "profiling_dashboard/base.html" %} {% load query_exchange_tags %} {% block nav-cpu %}
  • CPU profiler
  • {% endblock %} {% block content %}
    {% csrf_token %}

    {% if status %}Status: {{ status }}{% endif %}

    {{ form.sort_type }} {{ form.sort_order }}
    {{ form.limit.label_tag }}
    {{ form.limit }} {{ form.limit.errors }}
    {% if other_stats %}
    {% for stat in other_stats %}
    {{ stat }}{% endfor %}
    {% endif %} {% if stats %} {% for stat in stats %} {% endfor %}
    name ncall ttotal tsub tavg
    {{ stat.name }} {{ stat.ncall }} {{ stat.ttotal }} {{ stat.tsub }} {{ stat.tavg }}
    {% endif %} {% endblock %}