fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
229047891990258118a8eb4e49573b96f6aa1941
[wolnelektury.git]
/
apps
/
ajaxable
/
templatetags
/
ajaxable_tags.py
1
from django import template
2
from ajaxable.utils import placeholdized
3
register = template.Library()
4
5
6
@register.filter
7
def placeholdize(form):
8
return placeholdized(form)
9
10
11
@register.filter
12
def placeholdized_ul(form):
13
return placeholdized(form).as_ul()