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
754 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Adds new field to show product attachments in website -->
<template id="product_attachments" inherit_id="website_sale.product" name="product attachments">
<xpath expr="//div[@id='o_product_terms_and_share']" position="before">
<t t-if="attachments">
<span><strong>Related Documents:</strong></span>
<br/>
<t t-foreach="attachments" t-as="attachment">
<a t-att-href="'/attachment/download?attachment_id=%i' % attachment.id">
<span t-esc="attachment.name" class="fa fa-download" />
</a>
</t>
</t>
</xpath>
</template>
</odoo>