summaryrefslogtreecommitdiffstats
path: root/inventory/templatetags/graph_extras.py
blob: 66788e90b57315d3bac01e6e13f6299353a27719 (plain)
1
2
3
4
5
6
7
8
from django import template
from django.template.defaultfilters import stringfilter
register = template.Library()

@register.filter(name='graphescape')
@stringfilter
def graphescape(value):
    return value.replace('"', '\\"')