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.

46 lines
1.7 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Weihnachtspost Etiketten</title>
  6. <style>
  7. @page {margin-bottom: 0;}
  8. body {margin: 0;padding: 0;}
  9. table {width: 100%;page-break-after: always;}
  10. td {width: 50%;padding-top: 12px;}
  11. p, tr, td, table {padding: 0;margin: 0;font-family: Arial, Verdana, sans-serif;font-size: 14px;line-height: 19px;border:0;}
  12. tr, td, table {vertical-align: top;text-align: left;}
  13. div {overflow:hidden;height: 148px;}
  14. span {font-size: 8px;line-height: 10px;padding: 0 0 0 15px;}
  15. p {padding: 5px 0 0 15px;}
  16. td:nth-child(2) span,
  17. td:nth-child(2) p {padding-left: 45px;}
  18. </style>
  19. </head>
  20. <body>
  21. {% for key, value in data %}
  22. {% if key == 0 or key % 14 == 0 %}
  23. <table width="100%" class="addresses" cellpadding="0" cellspacing="0" border="0">
  24. {% endif %}
  25. {% if key % 2 == 0 %}
  26. <tr>
  27. {% endif %}
  28. <td>
  29. <div>
  30. <span>PLP Parkhauswerbung GmbH | Siemensstraße 19 | 40721 Hilden</span>
  31. <p>{{ value.firstname }} {{ value.lastname }}<br />
  32. <em>{{ value.company }}</em></p>
  33. <p>{{ value.street }} {{ value.street_no }}<br />
  34. <strong>{{ value.zip }} {{ value.city }}</strong><br />
  35. {{ value.country }}</p>
  36. </div>
  37. </td>
  38. {% if key % 2 != 0 %}
  39. </tr>
  40. {% endif %}
  41. {% if (key + 1) % 14 == 0 or data|length == key + 1 %}
  42. </table>
  43. {% endif %}
  44. {% endfor %}
  45. </body>
  46. </html>