{% extends 'profiler_base.html' %} {% load page_tags %} {% block stage %}
{% csrf_token %}
{% if profile_logs_records %} {% for record in profile_logs_records %} {% endfor %}
# Path User Cpu Time System Cpu Time Ip Address
{{ record.request_path }} {{ record.timer_utime }} {{ record.timer_stime }} {{ record.ip_address }}
Device Number of queries Sql Time No of cache calls Cahe Time Cache Hits Cache Misses Cache Sets Cache Gets
{% if record.device %}{{ record.device }}{% else %}None{% endif %} {{ record.sql_queries }} {{ record.sql_time }} {% if record.cache_num_calls %}{{ record.cache_num_calls }}{% else %}None{% endif %} {{ record.cache_time }} {{ record.cache_hits }} {{ record.cache_misses }} {{ record.cache_sets }} {{record.cache_gets}}
{% else %} No Items Available in database {% endif %}
{% get_page current_page last_page as pages %}
{% endblock %} {% block extra_js %} {% endblock %}