[ADD]Yaltik DSL : add template tag

This commit is contained in:
Fabien BOURGEOIS 2024-04-16 11:08:44 +02:00
parent 0edf9cc91d
commit 9839cf9cfe
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Copyright 2019-2023 Fabien Bourgeois <fabien@yaltik.com>
# Copyright 2019-2024 Fabien Bourgeois <fabien@yaltik.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@ -19,7 +19,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': '10.0.0.5.10',
'version': '10.0.0.5.12',
'category': 'Yaltik',
'author': 'Fabien Bourgeois',
'license': 'AGPL-3',

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright 2019-2023 Fabien Bourgeois <fabien@yaltik.com>
# Copyright 2019-2024 Fabien Bourgeois <fabien@yaltik.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@ -39,6 +39,7 @@ delete = lambda *args: xmln('delete', *args)
form = lambda *args: xmln('form', *args)
tree = lambda *args: xmln('tree', *args)
search = lambda *args: xmln('search', *args)
template = lambda *args: xmln('template', *args)
# Actions
act_window = lambda *args: xmln('act_window', *args)