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