0

I'm trying to make some debugging in a Form view, I wrote something like this inside the notebook section of a form view:

<page string="test">
  <template>
        <t t-esc="Logging!"/>
        <t t-log="Logging!"/>
        <t t-raw="Logging" > </t>
  </template>
</page>

But nothing happens as if the section doesn't exist.

Can't we use Qweb template inside other views?

Ehab
  • 566
  • 6
  • 24
  • Does this answer your question? [Is it possible to use QWeb template in Form view?](https://stackoverflow.com/questions/68856264/is-it-possible-to-use-qweb-template-in-form-view) – CZoellner Oct 26 '22 at 14:09

1 Answers1

0

template tag will not render in form view. You can check this answer for more details

You can use templates in Activity, Gantt and Kanban views

Kenly
  • 24,317
  • 7
  • 44
  • 60