|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>Instandhaltungsplanung</title>
- <style>
- body, table, td, th {text-align: left;font-size: 11px;line-height: 16px;font-weight: normal;font-style:normal;font-family: Arial, Verdana, sans-serif;}
- table {margin: 0;}
- h1, h2, h3, h4, h5, h6, p, table {padding: 0;margin: 0;}
- h1, h2, h3, h4, h5, h6 {font-weight: bold;}
- td, th {padding: 0;vertical-align: top;font-weight: normal;}
- h1 {font-size: 24px;line-height: 32px;padding-bottom: 40px;}
- h1 span {font-size: 11px;font-weight: normal;}
- h2 {font-size: 20px;line-height: 28px;padding-bottom: 30px;}
- h3 {font-size: 16px;line-height: 22px;padding-bottom: 15px;}
- h4 {font-size: 13px;line-height: 18px;padding-bottom: 5px;}
- .mini-table {width: 75%;margin: 0 0 40px 0;border-collapse: collapse;}
- .mini-table td {page-break-inside: avoid;vertical-align: top;padding: 10px 0;border-bottom: 1px solid #000;}
- .mini-table td:last-child {text-align: right;font-weight: bold;}
- .mini-table td span {display: block;padding: 0 10px 0 0;}
- </style>
- </head>
- <body>
- <table width="100%">
- <tr>
- <td colspan="2"><br /></td>
- </tr>
- <tr>
- <td width="70%"><h1>MPP Tool - Arbeitsblatt <span>(erstellt am: {{ worksheet.creationDate|date("d.m.Y H:i") }})</span></h1></td>
- <td width="30%" style="text-align: right;"><img src="{{ app.request.getSchemeAndHttpHost() ~ '/assets/images/logos/real-fm.png' }}" alt="RealFM e.V." style="display: block;width: auto;height: 40px;" /></td>
- </tr>
- </table>
- {% include 'snippets/worksheet-result.html.twig' with {
- data: {
- 'worksheet': worksheet,
- 'sortedWorksheetTasks': sortedWorksheetTasks,
- 'isPdf': isPdf
- }
- } %}
- </body>
- </html>
|