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.
 
 
 
 
 

67 lines
3.4 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Subscription id card-->
<template id="report_subscription_id_card">
<t t-call="web.html_container">
<t t-call="web.external_layout">
<div class="page">
<center>
<div class="card border-secondary mb-3"
style="width:auto;border:2px solid black;">
<div class="card-header"
style="background-color:#a1b1c9;font-size:25px;">
<b>SUBSCRIPTION ID CARD</b>
</div>
<div class="card-body text-secondary">
<center>
<div class="row" style="width:600px;">
<span style="margin-left:250px;">
<img t-attf-src="/web/image/res.partner/{{partner_id}}/image_1920"
style="width: 90px; height: 90px; object-fit: contain;"
alt="Product image"/>
</span>
<br/>
<span
style="font-size:22px;margin-left:250px;">
<b>
<t t-esc="name"/>
</b>
</span>
</div>
</center>
<br/>
<div class="row">
<span style="font-size:22px;">
<b>Start Date:</b>
<t t-esc="start_date"/>
</span>
</div>
<div class="row">
<span style="font-size:22px;">
<b>End Date:</b>
<t t-esc="end_date"/>
</span>
</div>
<div class="row">
<span style="font-size:22px;margin-left:0px;padding:0;">
<b>Products:</b>
</span>
</div>
<t t-foreach="products" t-as="product">
<div class="row">
<span class="text-left"
style="margin-left:100px;padding:0;font-size:19px;">
<t
t-esc="product"/>
</span>
<br/>
</div>
</t>
</div>
</div>
</center>
</div>
</t>
</t>
</template>
</odoo>