Ejemplo n.º 1
0
 def clean_comment(self):
     data = self.cleaned_data['comment']
     return sanitize_html(data, tags='p i strong b u a pre br', attrs='href')
Ejemplo n.º 2
0
def short_text(value):
    return sanitize_html(value, tags="i strong b u a")
Ejemplo n.º 3
0
def short_text(value):
    return sanitize_html(value, tags='i strong b u a')
Ejemplo n.º 4
0
def comment_text(value):
    return sanitize_html(value, tags="p i strong b u a pre br", attrs="href")
Ejemplo n.º 5
0
def comment_text(value):
    return sanitize_html(value, tags='p i strong b u a pre br', attrs='href')