[IMP] email_template: allow extra builtins in rendering sandbox

bzr revid: odo@openerp.com-20140310102410-m66aa8164tekr51t
This commit is contained in:
Olivier Dony 2014-03-10 11:24:10 +01:00
parent e40d6d8e9e
commit 9a3261da85
1 changed files with 9 additions and 0 deletions

View File

@ -63,6 +63,15 @@ try:
'quote': quote,
'urlencode': urlencode,
'datetime': datetime,
'len': len,
'abs': abs,
'min': min,
'max': max,
'sum': sum,
'filter': filter,
'reduce': reduce,
'map': map,
'round': round,
# dateutil.relativedelta is an old-style class and cannot be directly
# instanciated wihtin a jinja2 expression, so a lambda "proxy" is