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. Python Calendar wrapper template tag by dokterbob 3 years ago
  2. YUI Loader as Django middleware by akaihola 4 years, 1 month ago
  3. Monkey-patch Django's test client to return WSGIRequest objects by robmadole 1 year, 6 months ago
  4. Client-side Django-style date & time string formatting by robbie 5 years, 2 months ago
  5. Template tags to integrate with modconcat by matthanger 2 years, 10 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?)