Guys
I want to show the objects like following without using python code.
<t t-foreach="code equivalent to request.env['your.model'].search([])" t-as="obj">
<t t-esc="obj.name"/>
</t>
Is it possible?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Guys
I want to show the objects like following without using python code.
<t t-foreach="code equivalent to request.env['your.model'].search([])" t-as="obj">
<t t-esc="obj.name"/>
</t>
Is it possible?
I solved. My question was answer.
<t t-foreach="request.env['your.model'].search([])" t-as="obj">
<t t-esc="obj.name"/>
</t>
Good !
Nice :D
This is awesome!!! - Thanks!
For qweb templates, it doesn't work.
it's basically for odoo website template, not for qweb template.
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
0
5월 22
|
2161 | ||
|
3
11월 22
|
8369 | ||
|
0
12월 18
|
3564 | ||
|
3
9월 23
|
21031 | ||
t-att-href url get error
해결 완료
|
|
2
4월 23
|
8447 |
so you dont need to fetch from template .. do you mean that?