[ADD]Yaltik DSL : add template tag
This commit is contained in:
parent
0edf9cc91d
commit
9839cf9cfe
@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- 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
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU Affero General Public License as
|
# it under the terms of the GNU Affero General Public License as
|
||||||
@ -19,7 +19,7 @@
|
|||||||
'name': 'Yaltik Odoo DSL base module and fns',
|
'name': 'Yaltik Odoo DSL base module and fns',
|
||||||
'summary': 'Yaltik Odoo Domain Specific Language base module and functions',
|
'summary': 'Yaltik Odoo Domain Specific Language base module and functions',
|
||||||
'description': """ 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',
|
'category': 'Yaltik',
|
||||||
'author': 'Fabien Bourgeois',
|
'author': 'Fabien Bourgeois',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- 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
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU Affero General Public License as
|
# 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)
|
form = lambda *args: xmln('form', *args)
|
||||||
tree = lambda *args: xmln('tree', *args)
|
tree = lambda *args: xmln('tree', *args)
|
||||||
search = lambda *args: xmln('search', *args)
|
search = lambda *args: xmln('search', *args)
|
||||||
|
template = lambda *args: xmln('template', *args)
|
||||||
|
|
||||||
# Actions
|
# Actions
|
||||||
act_window = lambda *args: xmln('act_window', *args)
|
act_window = lambda *args: xmln('act_window', *args)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user