[ADD]Yaltik DSL : th tag

This commit is contained in:
Fabien BOURGEOIS 2024-12-22 23:37:00 +01:00
parent d6582fc94f
commit e705d61038
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@
'name': 'Yaltik Odoo DSL base module and fns',
'summary': 'Yaltik Odoo Domain Specific Language base module and functions',
'description': """ Yaltik Odoo Domain Specific Language base module and functions """,
'version': '12.0.0.5.15',
'version': '12.0.0.5.16',
'category': 'Yaltik',
'author': 'Fabien Bourgeois',
'license': 'AGPL-3',

View File

@ -103,6 +103,7 @@ strong = lambda *args: xmln('strong', *args)
small = lambda *args: xmln('small', *args)
table = lambda *args: xmln('table', *args)
tr = lambda *args: xmln('tr', *args)
th = lambda *args: xmln('th', *args)
td = lambda *args: xmln('td', *args)
style = lambda *args: xmln('style', *args)