Django template object jsonify

1
2
3
4
5
6
7
8
9
from django import template
from django.utils.safestring import mark_safe
from django.utils import simplejson

register = template.Library()

@register.filter
def jsonify(o):
    return mark_safe(simplejson.dumps(o))

More like this

  1. jsonify template filter by skam 6 years ago
  2. Add special field lookups to the Admin list_filter display by whiteinge 5 years, 3 months ago
  3. A dict template tag by Batiste 5 years, 1 month ago
  4. Confirm alert if the user navigates away without saving changes by mrazzari 3 years, 10 months ago
  5. AddThis Social Networking TemplateTag by yeago 4 years, 4 months ago

Comments

fallhunter (on December 15, 2008):

cool thing

#

hikozaemon (on December 15, 2008):

it's cool

#

Oduvan (on December 17, 2008):

simle and useful - GREATE

#

(Forgotten your password?)