Skip to content

Instantly share code, notes, and snippets.

@joeyfigaro
Created August 18, 2015 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeyfigaro/1c1e5acbeb7092b1e559 to your computer and use it in GitHub Desktop.
Save joeyfigaro/1c1e5acbeb7092b1e559 to your computer and use it in GitHub Desktop.
Inspect vars directly in your views (https://djangosnippets.org/snippets/743/)
from django import template
from django.template.defaultfilters import linebreaksbr
from django.utils.html import escape
try:
from django.utils.safestring import mark_safe
except ImportError: # v0.96 and 0.97-pre-autoescaping compat
def mark_safe(x): return x
from pprint import pformat
def rawdump(x):
if hasattr(x, '__dict__'):
d = {
'__str__':str(x),
'__unicode__':unicode(x),
'__repr__':repr(x),
}
d.update(x.__dict__)
x = d
output = pformat(x)+'\n'
return output
def dump(x):
return mark_safe(linebreaksbr(escape(rawdump(x))))
register = template.Library()
register.filter('rawdump', rawdump)
register.filter('dump', dump)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment