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
- jsonify template filter by skam 6 years ago
- Add special field lookups to the Admin list_filter display by whiteinge 5 years, 3 months ago
- A dict template tag by Batiste 5 years, 1 month ago
- Confirm alert if the user navigates away without saving changes by mrazzari 3 years, 10 months ago
- AddThis Social Networking TemplateTag by yeago 4 years, 4 months ago
Comments
cool thing
#
it's cool
#
simle and useful - GREATE
#