- Author:
- pryankster
- Posted:
- April 6, 2007
- Language:
- Python
- Version:
- .96
- Score:
- 6 (after 6 ratings)
This snippet introduces two tags: {%dbinfo%}
and {%dbquerylist%}
. The {%dbinfo%}
tag returns a string with the # of database queries and aggregate DB time. The {%dbquerylist%}
tag expands to a set of <LI> elements containing the actual SQL queries executed. If settings.TEMPLATE_DEBUG
is False, both tags return empty strings.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | rom django.template import Node
from django.template import Library
from django.conf import settings
import django.db as db
import re
from django.utils.html import escape
register = Library()
class DbInfoNode(Node):
def __init__(self):
pass
def __repr__(self):
return "<DbInfoNode>"
def render(self, context):
if not settings.TEMPLATE_DEBUG:
return ""
secs = 0.0
for s in db.connection.queries:
secs += float(s['time']);
return str("%d queries, %f seconds" % (len(db.connection.queries), secs)
)
def do_dbinfo(parser, token):
return DbInfoNode()
do_dbinfo = register.tag('dbinfo', do_dbinfo)
class DbQueryListNode(Node):
def __init__(self):
pass
def __repr__(self):
return "<DbQueryListNode>"
def render(self, context):
if not settings.TEMPLATE_DEBUG:
return ""
s = ""
for q in db.connection.queries:
s += "<li>" + escape(q["sql"]) + "</li>\n"
return s
def do_dbquerylist(parser, token):
return DbQueryListNode()
do_dbquerylist = register.tag('dbquerylist', do_dbquerylist)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 1 week ago
- Serializer factory with Django Rest Framework by julio 1 year, 4 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 5 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.