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.
32 lines
1.2 KiB
32 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<template id="account_financial_report.internal_layout">
|
|
<div class="article o_account_financial_reports_page">
|
|
<link
|
|
href="/account_financial_report/static/src/css/report.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<t t-raw="0" />
|
|
</div>
|
|
<div class="footer">
|
|
<div class="row">
|
|
<div class="col-6 custom_footer">
|
|
<span
|
|
t-esc="context_timestamp(datetime.datetime.now()).strftime('%Y-%m-%d %H:%M')"
|
|
/>
|
|
</div>
|
|
<div class="col-6 text-right custom_footer">
|
|
<ul class="list-inline">
|
|
<li class="list-inline-item">
|
|
<span class="page" />
|
|
</li>
|
|
<li class="list-inline-item">/</li>
|
|
<li class="list-inline-item">
|
|
<span class="topage" />
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</odoo>
|