table_pdf.tpl 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {{ organization }}
  2. <h2 align="center"> {{ pdf_title }} </h2>
  3. {% if pdf_description != null %}
  4. {{ pdf_description }}
  5. <br /><br />
  6. {% endif %}
  7. <table align="center" width="100%">
  8. <tr>
  9. <td>
  10. <strong>{{ "Teacher" | get_lang }}:</strong> {{ pdf_teachers }}
  11. </td>
  12. </tr>
  13. {% if pdf_session != null %}
  14. <tr>
  15. <td>
  16. <strong>{{ "Session" | get_lang }}:</strong> {{ pdf_session }}
  17. </td>
  18. </tr>
  19. {% endif %}
  20. <tr>
  21. <td>
  22. <strong>{{ "Course" | get_lang }}:</strong> {{ pdf_course }}
  23. {% if pdf_course_category %}
  24. <strong>{{ "Category" | get_lang }}:</strong> {{ pdf_course_category }}
  25. {% endif %}
  26. </td>
  27. </tr>
  28. <tr>
  29. <td>
  30. <strong>{{ "Date" | get_lang }}:</strong> {{ pdf_date }}
  31. </td>
  32. </tr>
  33. </table>
  34. <br />
  35. {{ pdf_content }}
  36. {% if add_signatures == true %}
  37. <br />
  38. <br />
  39. <table style="text-align:center" width="100%">
  40. <tr>
  41. <td>
  42. _____________________________
  43. <br />
  44. {{ "Drh" | get_lang }}
  45. </td>
  46. <td>
  47. _____________________________
  48. <br />
  49. {{ "Teacher" | get_lang }}
  50. </td>
  51. <td>
  52. _____________________________
  53. <br />
  54. {{ "Date" | get_lang }}
  55. </td>
  56. </tr>
  57. </table>
  58. {% endif %}