Login

Django template object jsonify

Author:
nmk
Posted:
December 15, 2008
Language:
Python
Version:
1.0
Score:
7 (after 7 ratings)

simple usage in tpl

{% load jsonify %}

<script type="text/javascript">
    var object = {{ object|jsonify }};
</script>
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. Template tag - list punctuation for a list of items by shapiromatron 3 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months, 1 week ago
  5. Help text hyperlinks by sa2812 12 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

#

Please login first before commenting.