2020-01-31 01:04:13 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<title>Invoice</title>
|
|
|
|
{#<meta name="description" content="">#}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
{{ include ('invoice.css') }}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<table width="1400px" id="invoice">
|
|
|
|
<tr>
|
|
|
|
<td width="50%">
|
|
|
|
{{ include ('invoice_side.html.twig', {
|
|
|
|
services: services,
|
|
|
|
images: images,
|
|
|
|
context: 'source',
|
2020-01-31 23:26:07 +00:00
|
|
|
locale: locales.source,
|
|
|
|
currency: currency
|
2020-01-31 01:04:13 +00:00
|
|
|
}, with_context = false) }}
|
|
|
|
</td>
|
|
|
|
<td width="50%">
|
|
|
|
{{ include ('invoice_side.html.twig', {
|
|
|
|
services: services,
|
|
|
|
images: images,
|
|
|
|
context: 'target',
|
2020-01-31 23:26:07 +00:00
|
|
|
locale: locales.target,
|
|
|
|
currency: currency
|
2020-01-31 01:04:13 +00:00
|
|
|
}, with_context = false) }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|