aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-29 10:33:25 +0100
committerAymeric Augustin2013-11-29 10:45:58 +0100
commita7dbc61ec4b4932a570d538b23a3ddd1d46203d4 (patch)
treea3b24c616ad99fb31160a96fa96e2c2563bf4dcf /debug_toolbar/templates
parent2135eac0d5d8e249af395db903608fd0f4bb5ce0 (diff)
downloaddjango-debug-toolbar-a7dbc61ec4b4932a570d538b23a3ddd1d46203d4.tar.bz2
Move support for line_profiler to a 3rd party panel.
Many thanks to Dave McLain. Fix #477.
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/profiling.html7
1 files changed, 0 insertions, 7 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/profiling.html b/debug_toolbar/templates/debug_toolbar/panels/profiling.html
index 9d34043..3800f98 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/profiling.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/profiling.html
@@ -30,13 +30,6 @@
<td>{{ call.tottime_per_call|floatformat:3 }}</td>
<td>{{ call.count }}</td>
</tr>
- {% if call.line_stats_text %}
- <tr class="djToggleDetails_{{ call.id }}{% for parent_id in call.parent_ids %} djToggleDetails_{{ parent_id }}{% endfor %}">
- <td colspan="6">
- <div style="padding-left: {{ call.indent }}px;"><pre>{{ call.line_stats_text }}</pre></div>
- </td>
- </tr>
- {% endif %}
{% endfor %}
</tbody>
</table>