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.
17 lines
476 B
17 lines
476 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="page" inherit_id="survey.page">
|
|
<xpath expr="//button[@t-if='last']" position="replace">
|
|
<button t-if="last" type="submit" class="btn btn-primary" name="button_submit" value="finish">
|
|
<t t-if="survey.submit_btn_label">
|
|
<span t-field="survey.submit_btn_label"/>
|
|
</t>
|
|
<t t-else="">
|
|
Submit survey
|
|
</t>
|
|
</button>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|