mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
28 lines
1.0 KiB
XML
28 lines
1.0 KiB
XML
<?xml version="1.0" ?>
|
|
<odoo>
|
|
<template id="template_contract_modification" name="Contract Modification">
|
|
<t t-call="contract.mail_notification_contract">
|
|
<table border="1" align="center">
|
|
<thead>
|
|
<tr>
|
|
<th name="th_date">Date</th>
|
|
<th name="th_description">Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<t t-foreach="record.modification_ids" t-as="modification">
|
|
<tr t-if="not modification.sent">
|
|
<td name="td_date">
|
|
<span t-field="modification.date" />
|
|
</td>
|
|
<td name="td_description">
|
|
<div t-field="modification.description" />
|
|
</td>
|
|
</tr>
|
|
</t>
|
|
</tbody>
|
|
</table>
|
|
</t>
|
|
</template>
|
|
</odoo>
|