diff options
Diffstat (limited to 'debug_toolbar/panels/sql.py')
| -rw-r--r-- | debug_toolbar/panels/sql.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debug_toolbar/panels/sql.py b/debug_toolbar/panels/sql.py index c1c9f1a..2cc981b 100644 --- a/debug_toolbar/panels/sql.py +++ b/debug_toolbar/panels/sql.py @@ -6,6 +6,8 @@ class SQLDebugPanel(DebugPanel): """ Panel that displays information about the SQL queries run while processing the request. """ + name = 'SQL' + def title(self): return '%d SQL Queries' % (len(connection.queries)) |
