Odoo modules related to surveys
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
601 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="survey_user_input_form" model="ir.ui.view">
  4. <field name="name">survey_custom_matrix survey.user_input form</field>
  5. <field name="model">survey.user_input</field>
  6. <field name="inherit_id" ref="survey.survey_user_input_form"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//form//header//button[@name='action_view_answers']" position="after">
  9. <button name="%(action_view_pdf_answers)d" states="done" string="Print PDF Answers" type="action" class="oe_highlight"/>
  10. </xpath>
  11. </field>
  12. </record>
  13. </odoo>