I would like to remove the queries information from the website. I am using django-html5-boilerplate.
The queries keeps appearing in the end of the page like this:

How can i remove this? It is very irritating…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no official or centralized django-html5-boilerplate package, but based on your problem, I’m guessing you’re using the one created by mike360 on github
If that’s the case, in base.html, you’ll find there the following bit of code:
Setting
DEBUG=Falsewill make it go away (which you’ll have to do in production, so you’ll still need to solve that staticfiles problem), but if you simply don’t want to see it during development, remove it from the template.