Add support for notification emails on m2m changes
[pgweb/local.git] / dep / django-selectable / selectable / templatetags / selectable_tags.py
blobfaa4f9387a4b5bc0ee2a9a6d01d26ef0d8a81de3
1 from __future__ import unicode_literals
3 from django import template
4 from django.conf import settings
7 register = template.Library()
10 @register.inclusion_tag('selectable/jquery-js.html')
11 def include_jquery_libs(version='1.7.2', ui='1.8.23'):
12 return {'version': version, 'ui': ui}
15 @register.inclusion_tag('selectable/jquery-css.html')
16 def include_ui_theme(theme='base', version='1.8.23'):
17 return {'theme': theme, 'version': version}