46 lines
2.1 KiB
XML
46 lines
2.1 KiB
XML
<odoo>
|
|
<data>
|
|
<template id="question_simple_choice" inherit_id="survey.question_simple_choice">
|
|
<xpath expr="//div[@t-attf-class='col-lg-12 d-flex flex-wrap']/t[@t-foreach='question.suggested_answer_ids']/label" position="after">
|
|
<style>
|
|
.o_survey_choice_btn {
|
|
flex: 1 0 200px !important;
|
|
}
|
|
</style>
|
|
<div style="font-size: 12px;margin-right: 15px;">已获票数:<span t-field='label.votes'/></div>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="question_multiple_choice" inherit_id="survey.question_multiple_choice">
|
|
<xpath expr="//div[@class='d-flex flex-wrap col-lg-12']/t[@t-foreach='question.suggested_answer_ids']/label" position="after">
|
|
<style>
|
|
.o_survey_choice_btn {
|
|
flex: 1 0 200px !important;
|
|
}
|
|
</style>
|
|
<div style="font-size: 12px;margin-right: 15px;">已获票数:<span t-field='label.votes'/></div>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="survey_page_print" inherit_id="survey.survey_page_print">
|
|
<xpath expr="//div[@class='js_question-wrapper']" position="attributes">
|
|
<attribute name="t-if">len(answer_lines)</attribute>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="web.brand_promotion_message" name="Brand Promotion Message">
|
|
<t t-set="odoo_logo">
|
|
<a target="_blank"
|
|
t-attf-href="http://opentekr.com/home"
|
|
class="badge text-bg-light">
|
|
<img alt="Opentekr"
|
|
src="/tx_survey/static/src/img/log.png"
|
|
width="62" height="20"
|
|
style="width: auto; height: 1em; vertical-align: baseline;"/>
|
|
</a>
|
|
</t>
|
|
<t t-set="final_message">Powered by %s%s</t>
|
|
<t t-out="final_message % (odoo_logo, _message and ('- ' + _message) or '')"/>
|
|
</template>
|
|
</data>
|
|
</odoo> |