콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
20965 화면

For example, When I run this code:         <p><t t-esc="6.2/9"/></p>

 

I get this:                                               <p>0.688888888889</p>

 

How can I make it look like this:            <p>0.69</p>   

아바타
취소
베스트 답변

<p><t t-esc="round(6.2/9,2)"/></p>

아바타
취소
작성자

Thank you Sajin. Where can I find this information from????

작성자

You have provided me with a lot of help with many of my questions. I appreciate it. Where do you work?

Still works in 14.0!