[ADD]Yaltik DSL : add template tag

This commit is contained in:
Fabien BOURGEOIS 2024-04-16 11:08:44 +02:00
parent b4c272a3da
commit 7d874226be
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': '16.0.0.5.11',
'version': '16.0.0.5.12',
'category': 'Yaltik',
'author': 'Fabien Bourgeois',
'license': 'AGPL-3',

View File

@ -1,4 +1,4 @@
# 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
@ -37,6 +37,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
def act_window_model(model, attrs):